728x90
반응형

onload event page load된 후 바로 일어난다.

 

Example

 

page load된 후 “Page is loaded" alert한다.

 

<html>

<head>

<script type="text/javascript">

function load()

{

alert("Page is loaded");

}

</script>

</head>

 

<body onload="load()">

<h1>Hello World!</h1>

</body>

</html>

 

 

728x90
반응형

'Web Programming > java-jsp' 카테고리의 다른 글

trim(), substring(), indexOf(char)  (0) 2013.09.25
POI 로 엑셀파일 읽어서 DB저장하기  (0) 2013.09.25
ModelAndView  (0) 2013.09.23
Spring Security  (0) 2013.09.16
location.href 의 바른사용  (0) 2013.09.16

+ Recent posts