Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 미라지
- iTunes
- eclipse
- 개발자
- oracle not in
- input box
- 한글
- 2NE1
- 검색
- 10g
- 다운로드
- 설치
- 이클립스
- M480
- Download
- javascript
- error
- 링크
- 오라클
- oracle not exists
- DATABASE
- jqeury
- java
- jquery
- Modeling
- Oracle
- html
- 태그를 입력해 주세요.
- update
- SELECT UPDATE
Archives
- Today
- Total
not set
javascript 실행순서 본문
<!doctype html>
<html>
<head>
<title>script</title>
<script type="text/javascript">
alert(1);
</script>
</head>
<body onLoad="alert(2)">
<script type="text/javascript">
alert(3);
</script>
</body>
<script type="text/javascript">
alert(4);
</script>
</html>
내가 미쳤었나보다 ㅠㅠ
이걸 까먹다니 반성합니다.
정답은 1,3,4,2
'javascript > javascript' 카테고리의 다른 글
javascript 객체와 반복문 (0) | 2012.01.17 |
---|---|
javascript 증감 연산 기본 (0) | 2012.01.16 |