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,713
14년 전 조회 2,087
14년 전 조회 1,834
14년 전 조회 1,966
14년 전 조회 2,373
14년 전 조회 1,805
14년 전 조회 2,219
14년 전 조회 1,796
14년 전 조회 1,731
14년 전 조회 2,379
14년 전 조회 4,259
14년 전 조회 1,818
14년 전 조회 3,234
14년 전 조회 2,025
14년 전 조회 1,919
14년 전 조회 2,813
14년 전 조회 2,726
14년 전 조회 1,679
14년 전 조회 2,603
14년 전 조회 3,071
14년 전 조회 2,470
14년 전 조회 1,711
14년 전 조회 3,117
14년 전 조회 1,904
14년 전 조회 1,681
14년 전 조회 1,643
14년 전 조회 2,378
14년 전 조회 2,748
14년 전 조회 2,241
14년 전 조회 1,710
14년 전 조회 1,891
14년 전 조회 2,412
14년 전 조회 2,367
14년 전 조회 1,693
14년 전 조회 4,455
14년 전 조회 2,352
14년 전 조회 5,531
14년 전 조회 1,921
14년 전 조회 2,923
14년 전 조회 1,989
14년 전 조회 1,875
14년 전 조회 2,719
14년 전 조회 1,770
14년 전 조회 2,722
14년 전 조회 1,819
14년 전 조회 2,489
14년 전 조회 2,121
14년 전 조회 5,073
14년 전 조회 3,053
14년 전 조회 1,899
14년 전 조회 1,851
14년 전 조회 2,333
14년 전 조회 2,035
14년 전 조회 2,035
14년 전 조회 3,268
14년 전 조회 1,766
14년 전 조회 4,013
14년 전 조회 3,856
14년 전 조회 2,253
14년 전 조회 1,922
14년 전 조회 3,310
14년 전 조회 2,066
14년 전 조회 2,307
14년 전 조회 1,683
14년 전 조회 2,779
14년 전 조회 2,259
14년 전 조회 2,336
14년 전 조회 2,619
14년 전 조회 1,758
14년 전 조회 4,841
14년 전 조회 1,963
14년 전 조회 2,921
14년 전 조회 2,305
14년 전 조회 1,819
14년 전 조회 5,803
14년 전 조회 1,669
14년 전 조회 3,784
14년 전 조회 1,995
14년 전 조회 1,793
14년 전 조회 2,191
14년 전 조회 8,921
14년 전 조회 2,101
14년 전 조회 3,174
14년 전 조회 2,591
14년 전 조회 2,168
14년 전 조회 5,235
14년 전 조회 1,852
14년 전 조회 2,298
14년 전 조회 1,836
14년 전 조회 1,879
14년 전 조회 2,701
14년 전 조회 3,498
14년 전 조회 1,937
14년 전 조회 2,165
14년 전 조회 2,091
14년 전 조회 2,317
14년 전 조회 1,564
14년 전 조회 2,154
14년 전 조회 1,667
14년 전 조회 2,009