Страницы: 1
Спасибо, помогло :)
Добрый день,
Есть страница с таким кодом:
<html> <body> <form method="POST" id="editform" name="editform" enctype='multipart/form-data'> <table border="0" cellspacing="1" cellpadding="3" id='rows'><tbody> <tr id='b_c0'><td> <input type="text" name="phone0" id="phone0"> <input type="image" onclick="clear_phone(0);return false;" id="deactivate0" src="/img/deactivate.png" width=20 height=20 border=0> </td></tr> <tr id='b_c1'><td> <input type="text" name="phone1" id="phone1"> <input type="image" onclick="clear_phone(1);return false;" id="deactivate1" src="/img/deactivate.png" width=20 height=20 border=0> </td></tr> </tbody></table> <input type=button value="Сохранить данные" onclick='return CheckFields();'> </form> <script> function CheckFields(){ document.getElementById('editform').submit(); return true; } function clear_phone(i){ element = document.getElementById('b_c'+i); element.parentNode.removeChild(element); return false; } </script> </body> </html>
П
…Страницы: 1