묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
onload 로 자바스크립트 함수 호출
2014.12.14 22:07
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script type="text/javascript" src="jquery.smartPop.js"></script>
<link rel="stylesheet" href="jquery.smartPop.css" />
<script type="text/javascript">
$(document).ready(function() {
$('#sample2').click(function() {
$.smartPop.open({ width: window.innerWidth, height: window.innerHeight, url: 'smartPop.html', padding: 0, left: 0, top: 0, });
});
});
</script>
</head>
<body>
<input type="button" id="sample2" class="button" value="sample2" />
</body>
</html>
안녕하세요!
스마트 팝업이라는 레이어 팝업을 띄워주는 소스입니다.
예제는 인풋 버튼을 누르면 스크립트가 호출되는데요,
이걸 onload 나 onunload 로 호출하려면
어떻게 해야 할까요..
자바스크립트는 공부를 한 적이 없어서 잘 모르겠는데
급히 필요합니다 ㅎㅎ;
댓글 3
-
이즈야
2014.12.15 01:59
-
잉현웅:333
2014.12.15 22:12
-
이즈야
2014.12.15 02:01
언로드는
jQuery(window).on("unload", function() {
// UNLOAD EVENT
});
또는
jQuery(window).on("beforeunload", function() {
// UNLOAD EVENT
});
로...
jQuery(function() {
// ONLOAD EVENT
});
또는
jQuery(document).ready(function() {
// ONLOAD EVENT
});
로 하시면 됩니다.