Начало
Формы
Предварительный просмотр HTML
HTML предварительного просмотра в новом окне, входя в это в форму. Это позволяет Вам передавать что-либо к новому окну.
JavaScript Forms: Предварительный просмотр HTML
<!-- TWO STEPS TO INSTALL HTML PREVIEW: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function displayHTML(form) { var inf = form.htmlArea.value; win = window.open(", ", 'popup', 'toolbar = no, status = no'); win.document.write("" + inf + ""); } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <form> <textarea name="htmlArea" cols=45 rows=6> </textarea> <br> <input type="button" value=" view " onclick="displayHTML(this.form)"> </form> <!-- Script Size: 1.07 KB -->