Jump to content
  • 0

Обращение к элементу формы, добавленному через PHP скрипт


BlackCreator
 Share

Question

Всем доброго времени суток. Вот начал осваивать AJAX, и сталкнулся с проблемой. В ХТМЛ странице предусмотрено:

<div id='comments'></div>

Сюда после определенного события добавляется код формы(после обработки этого шаблона парсером через PHP скрипт):

<form>
<table>
<tr>
<td>Имя: </td>
<td><input id="name" name="name" type="text"></td>
</tr>
<tr>
<td>E-mail:</td>
<td><input id="email" name="email" type="text"></td>
</tr>
<tr>
<td>Сообщение:</td>
<td><textarea id="text" name="text"></textarea></td>
</tr>
<tr>
<td><input type="button" onclick="ServСall('%ID%','%AFTER_ID%','add');" value="Добавить запись"></td>
</tr>
</table>
</form>

И само помещение в блок:

 var response = xmlHttp.responseText;
document.getElementById('comments').innerHTML = response;

.

Форма на странице появляется, но после нажатия кнопки добавление записи, не удается забрать значения заполненных полей вот таким методом:

 ...
if(action=="add"){
var name=document.getElementById('name').value;
var email=document.getElementById('email').value;
var text=document.getElementById('text').value;
...

С чем это может быть связано? Может быть добавлять форму методами DOM ( ой как не хочется ... )?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

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