Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Math.round()
- 파일질라설치
- calc.plus
- excel중복체크
- hide
- SUB함수
- push오류
- FileZilla다운로드
- 증가값
- Parent
- is_check
- 1521
- 주석이 먹히지 않을 때
- 소스트리인증실패
- Math.ceil()
- Math.floor()
- selectedIndex
- selectoptions
- 파일질라다운로드
- toFixed()
- Excel
- index %
- 파일질라설치오류
- removeClass
- FileZilla설치
- ctrl+/
- Git
- calc.minus
- addClass
- slideUp
Archives
- Today
- Total
잡동사니에도 사랑을
[21.09.13] exam18 - 스파게티 소스(에러가 발생하는 이유) 본문
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function doPrint(num) {
var msg = "doPrint()가 " + num + "회 실행되었습니다.";
alert(msg);
document.getElementById("myid").innerHTML = msg;
}
doPrint(1);
</script>
</head>
<body>
<script type="text/javascript">
doPrint(2);
</script>
<h1 id = "myid">안녕하세요.</h1>
<script type="text/javascript">
doPrint(3);
</script>
</body>
</html>
<!--
스파게티 소스 - 제어하려는 태그가 인식된 이후에 자바스크립트 함수를 호출해야 한다는 제약은
자바 스크립트 소스와 HTML 태그를 반드시 순서를 지켜 코딩해야 한다는 것이다.
-->
728x90
반응형
'JAVA_EE > JavaScript' 카테고리의 다른 글
[21.09.13] exam16 - showResult() / hideResult() / onmouseover / onmouseout (0) | 2021.09.14 |
---|---|
[21.09.13] exam17 - var answer = eval(input); (0) | 2021.09.14 |
[21.09.13] exam19(JavaScript) - document.getElementById("myid") (0) | 2021.09.14 |
[21.09.10] exam13 (0) | 2021.09.10 |
[21.09.10] exam14 (0) | 2021.09.10 |