<BODY>
<script type="text/javascript">
function hamsu(a, b){
document.write(a + b);
var local = "지역변수";
global = "전역변수";
}
hamsu("함수","이벤트 핸들러");
document.write("<br>");
// document.write(local); // function hamsu()안에서 선언된 지역 변수로 외부로 출력이 안됨
document.write(global);
</script>
</BODY>
'º Learning 。 > ♂ Javascript ♀' 카테고리의 다른 글
document 객체의 전체 속성 확인하기 (0) | 2009.05.25 |
---|---|
버튼 클릭으로 페이지 이동 (0) | 2009.05.25 |
함수의 참조 (0) | 2009.05.25 |
리턴값이 있는 함수 (0) | 2009.05.25 |
onmouseover onmouseon (0) | 2009.05.25 |