COMING SOON 🚀

f

출력 결과가 이상하게 다르네요....

안녕하세요.
자바스크립트 초보라 이렇게 질문 드립니다.
 
동일한 내용을 출력하는데 함수에서 호출 할 경우와 그렇지 않을 경우의 결과가 다릅니다.
왜 그런가요?
 
 
[예제1]
<html>
<head>
<script type="text/javascript">
function print_form()
{
 document.write(document.forms.length);
 document.write(document.forms[0].elements[1].name);
}
</script>
</head>
<body>
<form>
name:<input type="text" name="name" /><br />
phone:<input type="text" name="phone" /><br />
</form>
<form>
name2:<input type="text" name="name2" /><br />
phone2:<input type="text" name="phone2" /><br />
</form>
<input type="submit" onclick="print_form()" />

</body>
</html>
 
결과 : 2, name 이 정상 출력 되어야 하는데 이상하게 2만 출력이 되네요.
 
[예제2]
<html>
<head>
</head>
<body>
<form>
name:<input type="text" name="name" /><br />
phone:<input type="text" name="phone" /><br />
</form>
<form>
name2:<input type="text" name="name2" /><br />
phone2:<input type="text" name="phone2" /><br />
</form>
<script type="text/javascript">
document.write(document.forms.length);
document.write(document.forms[0].elements[0].name);
</script>

</body>
</html>
 
결과 : 2, name 이 정상 출력 됩니다.
|

댓글 3개

document.write(document.forms.length+document.forms[0].elements[1].name); 요렇게 처리해야 할듯 싶내요...
새로운 페이지가 생성되면서 잃으면서 다음건 출력 안되는거내요.
도통 모르겠네요
일단은 두 페이지가 소스가 다르네요

document.forms[0].elements[0].name
document.forms[0].elements[1].name

http://math88.com.ne.kr/computer/js/JSmanual/7-2-6-2.html
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 1,539
14년 전 조회 1,903
14년 전 조회 1,665
14년 전 조회 1,852
14년 전 조회 2,170
14년 전 조회 1,700
14년 전 조회 2,047
14년 전 조회 1,620
14년 전 조회 1,633
14년 전 조회 2,189
14년 전 조회 4,060
14년 전 조회 1,590
14년 전 조회 3,041
14년 전 조회 1,793
14년 전 조회 1,715
14년 전 조회 2,593
14년 전 조회 2,527
14년 전 조회 1,479
14년 전 조회 2,400
14년 전 조회 2,845
14년 전 조회 2,254
14년 전 조회 1,495
14년 전 조회 2,894
14년 전 조회 1,677
14년 전 조회 1,463
14년 전 조회 1,433
14년 전 조회 2,156
14년 전 조회 2,528
14년 전 조회 2,022
14년 전 조회 1,497
14년 전 조회 1,704
14년 전 조회 2,214
14년 전 조회 2,146
14년 전 조회 1,483
14년 전 조회 4,262
14년 전 조회 2,155
14년 전 조회 5,332
14년 전 조회 1,708
14년 전 조회 2,723
14년 전 조회 1,771
14년 전 조회 1,669
14년 전 조회 2,581
14년 전 조회 1,567
14년 전 조회 2,513
14년 전 조회 1,627
14년 전 조회 2,382
14년 전 조회 1,905
14년 전 조회 4,967
14년 전 조회 2,938
14년 전 조회 1,790
14년 전 조회 1,633
14년 전 조회 2,224
14년 전 조회 1,831
14년 전 조회 1,931
14년 전 조회 3,061
14년 전 조회 1,643
14년 전 조회 3,819
14년 전 조회 3,733
14년 전 조회 2,060
14년 전 조회 1,735
14년 전 조회 3,195
14년 전 조회 1,834
14년 전 조회 2,085
14년 전 조회 1,566
14년 전 조회 2,673
14년 전 조회 2,042
14년 전 조회 2,115
14년 전 조회 2,402
14년 전 조회 1,530
14년 전 조회 4,605
14년 전 조회 1,838
14년 전 조회 2,687
14년 전 조회 2,170
14년 전 조회 1,603
14년 전 조회 5,589
14년 전 조회 1,453
14년 전 조회 3,562
14년 전 조회 1,875
14년 전 조회 1,578
14년 전 조회 1,991
14년 전 조회 8,692
14년 전 조회 1,909
14년 전 조회 2,935
14년 전 조회 2,399
14년 전 조회 1,951
14년 전 조회 5,021
14년 전 조회 1,646
14년 전 조회 2,081
14년 전 조회 1,705
14년 전 조회 1,746
14년 전 조회 2,483
14년 전 조회 3,307
14년 전 조회 1,815
14년 전 조회 1,960
14년 전 조회 1,873
14년 전 조회 2,193
14년 전 조회 1,442
14년 전 조회 1,954
14년 전 조회 1,479
14년 전 조회 1,881