Jump to content
  • 0

Перебор в цикле элементов Form


ProGGGer
 Share

Question

Такой вот вопрос возник... Надо вывести значения полей заполненных в Форме

Имена полей отличаюся цифровым идентификатором...

В цикле вывод делаю через alert (document.meform.fam+i.value);

Заполняю форуму а при выводе идет вывод не значений а NaN , в чем может быть проблема...

Новичок в JS не весь синтаксис знаю.

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<script language="JavaScript">
<!--

function test()
{
for (i=1;i<5;i++)
{
alert (document.meform.fam+i.value);
}
}
-->
</script>
</head>

<body>
<h2 align="center">Анкета сотрудников</h2>
<table>
<td width="50%">
<div style="border-style:dotted">
<form method="GET" name="meform">
Фамилия сотрудника 1 : <input type="text" name="fam1">

Фамилия сотрудника 2 : <input type="text" name="fam2">

Фамилия сотрудника 3 : <input type="text" name="fam3">

Фамилия сотрудника 4 : <input type="text" name="fam4">

Фамилия сотрудника 5 : <input type="text" name="fam5">

<input type="submit" value="Вывести" onClick="test()">
</form>
</div>
<hr>
</table>

</body>
</html>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<script language="JavaScript">
<!--

function test()
{
for (i=1;i<5;i++)
{
alert (document.getElementById("fam"+i).value);
}
}
-->
</script>
</head>

<body>
<h2 align="center">Анкета сотрудников</h2>
<table>
<td width="50%">
<div style="border-style:dotted">
<form method="GET" name="meform">
Фамилия сотрудника 1 : <input type="text" id="fam1">

Фамилия сотрудника 2 : <input type="text" id="fam2">

Фамилия сотрудника 3 : <input type="text" id="fam3">

Фамилия сотрудника 4 : <input type="text" id="fam4">

Фамилия сотрудника 5 : <input type="text" id="fam5">

<input type="button" value="Вывести" onClick="test()">
</form>
</div>
<hr>
</table>

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy