Русский
<!-- Добавьте следующий код в область <body> --> <input type="button" value="Dynamic Add" onclick="document.body.innerHTML+='<input>'"> <input type= "button" value="Просмотреть после добавления" onclick="alert(document.body.innerHTML)"> <input type="button" value="После сохранения изменений" onclick="saves()"> <script> функция сохраняет (){ winSave=window.open('','','top=1000'); winSave.document.open ("text/html","gb2312"); winSave.document.write (document.body.innerHTML); ); winSave.document.close (); winSave.document.execCommand ('saveas','',''); winSave.close();