Jump to content
  • 0

...innerHTML += должен обнулять инпуты ?


iillyyaa2
 Share

Question

в контейнер подгружаю блок с инпутом, всё хорошо, но вот при добавлении следующей строки, если что то было в инпутах написано, почему то обнуляется...

с чем это связано ?


document.getElementById('divForText').innerHTML += '<div id="'+txt[txt.length-1]+'_div"><input type="Text" value="" id="'+txt[txt.length-1]+'"><b onclick="ddel('+(txt.length-1)+');">del</b></div>';

обнуляются инпуты которые находятся в этом же блоке...

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

вот такой контейнер получается:

<div id="divForText">
<div id="idTXT_0_div">
<input id="idTXT_0" type="Text">
<b onclick="ddel(0);">del</b>
</div>
<div id="idTXT_1_div" style="display: none;">
<input id="idTXT_1" type="Text">
<b onclick="ddel(1);">del</b>
</div>
<div id="idTXT_2_div">
<input id="idTXT_2" type="Text">
<b onclick="ddel(2);">del</b>
</div>
</div>

и хочу добавить туда

<div id="idTXT_3_div">
<input id="idTXT_3" type="Text">
<b onclick="ddel(3);">del</b>
</div>

всё работает прекрасно, но вот содержимое инпутов обнуляется (если конечно их вбили)

можно тупо создать переменную, в неё запихать те блоки что уже там есть, считать значения, установить новым input-ам их, добавить новый инпут, и потом заменить содержимое... но не уж-то проще никак ? ;)

Link to comment
Share on other sites

  • 0

ага, пашет...

var js=document.createElement('DIV');
js.innerHTML='22222';
document.getElementById('divForText').appendChild(js);

и инпут пробовал в див положить, пашет...

а как id этому созданному диву присвоить ? ;)

.className - присваивает класс, а как id ? ;)

оказалось всё проще чем я думал :)

.id=....;

огромное спасибо, код работает на ура ;)

Edited by iillyyaa2
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