2013년 6월 13일 목요일

이클립스 단축 키

대문자, 소문자 변환 단축키
 소문자 -> 대문자 변환
   Ctrl+Shift+x
 대문자 -> 소분자 변환
   Ctrl+Shift+y

2013년 6월 11일 화요일

부모창에서 자식창 함수 호출

parent.html

<html>
<head>
<script type="text/javascript">
var frmFunc = undefined;
function callfrmFunc(){
if(typeof frmFunc != 'undefined'){
frmFunc();
}else{
alert('자식창 함수 호출 실패!')
}
}
</script>
</head>
<body>
<iframe id="testIframe" src="child.html"></iframe>
<button onclick="callfrmFunc();">Access function</button>
</body>
</html>

child.html

<html>
<head>
<script type="text/javascript">
function childFunc(){
alert('자식창 함수 호출 성공!')
}

parent.frmFunc = childFunc;
</script>
</head>
<body>
부모창에서 자식창 함수 호출 테스트!
</body>
</html>