한국어
<!-- <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.execCommand ('saveas','','') } </script>