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,604
14년 전 조회 1,967
14년 전 조회 1,722
14년 전 조회 1,888
14년 전 조회 2,232
14년 전 조회 1,740
14년 전 조회 2,109
14년 전 조회 1,682
14년 전 조회 1,662
14년 전 조회 2,243
14년 전 조회 4,125
14년 전 조회 1,684
14년 전 조회 3,104
14년 전 조회 1,879
14년 전 조회 1,781
14년 전 조회 2,653
14년 전 조회 2,594
14년 전 조회 1,553
14년 전 조회 2,469
14년 전 조회 2,914
14년 전 조회 2,339
14년 전 조회 1,566
14년 전 조회 2,965
14년 전 조회 1,766
14년 전 조회 1,544
14년 전 조회 1,504
14년 전 조회 2,238
14년 전 조회 2,616
14년 전 조회 2,105
14년 전 조회 1,586
14년 전 조회 1,766
14년 전 조회 2,278
14년 전 조회 2,224
14년 전 조회 1,557
14년 전 조회 4,319
14년 전 조회 2,244
14년 전 조회 5,411
14년 전 조회 1,784
14년 전 조회 2,794
14년 전 조회 1,849
14년 전 조회 1,740
14년 전 조회 2,634
14년 전 조회 1,636
14년 전 조회 2,592
14년 전 조회 1,699
14년 전 조회 2,420
14년 전 조회 1,981
14년 전 조회 5,006
14년 전 조회 2,982
14년 전 조회 1,826
14년 전 조회 1,714
14년 전 조회 2,265
14년 전 조회 1,917
14년 전 조회 1,971
14년 전 조회 3,131
14년 전 조회 1,693
14년 전 조회 3,889
14년 전 조회 3,778
14년 전 조회 2,112
14년 전 조회 1,799
14년 전 조회 3,229
14년 전 조회 1,936
14년 전 조회 2,158
14년 전 조회 1,608
14년 전 조회 2,718
14년 전 조회 2,112
14년 전 조회 2,189
14년 전 조회 2,478
14년 전 조회 1,622
14년 전 조회 4,681
14년 전 조회 1,882
14년 전 조회 2,773
14년 전 조회 2,218
14년 전 조회 1,673
14년 전 조회 5,656
14년 전 조회 1,528
14년 전 조회 3,652
14년 전 조회 1,916
14년 전 조회 1,653
14년 전 조회 2,057
14년 전 조회 8,758
14년 전 조회 1,979
14년 전 조회 3,017
14년 전 조회 2,457
14년 전 조회 2,029
14년 전 조회 5,099
14년 전 조회 1,717
14년 전 조회 2,156
14년 전 조회 1,755
14년 전 조회 1,795
14년 전 조회 2,564
14년 전 조회 3,370
14년 전 조회 1,863
14년 전 조회 2,023
14년 전 조회 1,954
14년 전 조회 2,238
14년 전 조회 1,485
14년 전 조회 2,022
14년 전 조회 1,554
14년 전 조회 1,923