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,619
14년 전 조회 1,985
14년 전 조회 1,737
14년 전 조회 1,891
14년 전 조회 2,259
14년 전 조회 1,752
14년 전 조회 2,123
14년 전 조회 1,698
14년 전 조회 1,666
14년 전 조회 2,259
14년 전 조회 4,143
14년 전 조회 1,711
14년 전 조회 3,123
14년 전 조회 1,906
14년 전 조회 1,802
14년 전 조회 2,668
14년 전 조회 2,616
14년 전 조회 1,578
14년 전 조회 2,493
14년 전 조회 2,940
14년 전 조회 2,365
14년 전 조회 1,590
14년 전 조회 2,996
14년 전 조회 1,788
14년 전 조회 1,570
14년 전 조회 1,539
14년 전 조회 2,261
14년 전 조회 2,634
14년 전 조회 2,126
14년 전 조회 1,601
14년 전 조회 1,783
14년 전 조회 2,299
14년 전 조회 2,248
14년 전 조회 1,574
14년 전 조회 4,343
14년 전 조회 2,260
14년 전 조회 5,434
14년 전 조회 1,800
14년 전 조회 2,815
14년 전 조회 1,874
14년 전 조회 1,762
14년 전 조회 2,641
14년 전 조회 1,657
14년 전 조회 2,615
14년 전 조회 1,719
14년 전 조회 2,427
14년 전 조회 2,002
14년 전 조회 5,010
14년 전 조회 2,988
14년 전 조회 1,829
14년 전 조회 1,736
14년 전 조회 2,267
14년 전 조회 1,936
14년 전 조회 1,977
14년 전 조회 3,153
14년 전 조회 1,701
14년 전 조회 3,904
14년 전 조회 3,784
14년 전 조회 2,136
14년 전 조회 1,828
14년 전 조회 3,238
14년 전 조회 1,957
14년 전 조회 2,181
14년 전 조회 1,615
14년 전 조회 2,727
14년 전 조회 2,135
14년 전 조회 2,216
14년 전 조회 2,498
14년 전 조회 1,638
14년 전 조회 4,710
14년 전 조회 1,887
14년 전 조회 2,797
14년 전 조회 2,224
14년 전 조회 1,700
14년 전 조회 5,671
14년 전 조회 1,556
14년 전 조회 3,676
14년 전 조회 1,920
14년 전 조회 1,668
14년 전 조회 2,079
14년 전 조회 8,783
14년 전 조회 1,996
14년 전 조회 3,045
14년 전 조회 2,482
14년 전 조회 2,045
14년 전 조회 5,126
14년 전 조회 1,737
14년 전 조회 2,184
14년 전 조회 1,766
14년 전 조회 1,803
14년 전 조회 2,589
14년 전 조회 3,390
14년 전 조회 1,870
14년 전 조회 2,042
14년 전 조회 1,976
14년 전 조회 2,246
14년 전 조회 1,489
14년 전 조회 2,041
14년 전 조회 1,569
14년 전 조회 1,931