打印我使用這個代碼從結果顯示在同一窗口爲形式的一種形式提交表單的數據的彈出和彈出窗口
<input id="name" name="name" type="text" class="auto-style8" style="width: 70%" />
<button id="singlebutton" name="singlebutton" class="btn btn-primary" onclick="return submit();">Submit</button>
<div id="info"></div>
<script type="text/javascript">
function submit()
{
var name = document.getElementById("name").value;
document.getElementById("info").innerHTML = " My Name is "+name+" ";
return false;
}
</script>
得到提交的數據。 我想顯示在彈出窗口中顯示輸出,並能夠在一次點擊將打印彈出內容的主窗口
edit: just to clarify more.
form submitted > open a new window > displays the entered results
感謝
所以打開一個新的窗口(window.open)和寫入(文件寫入)。 – epascarello
你能修改這段代碼嗎,謝謝 – user3743685
http://jqueryui.com/dialog/#modal – ewizard