我在网页中有一个文本框,用户可以在其中输入文本,然后可以单击“预览”生成并在新的浏览器窗口中打开包含该文本的PDF。我目前的代码是:
function tryPDF() {
var timestamp = +new Date;
var win = window.open("postsurvey.php"
+ "?content=" + encodeURIComponent(document.getElementById("pdfinfo").value)
+ "&aspdf=true"
+ "&preview=true"
+ "&t=" + timestamp, "_blank");
win.focus();
}
页面下方是文本框;
<div class='use' style='font-weight: normal; padding-top: 0px;
padding-bottom: 0px;' onclick='tryPDF()'>PREVIEW</div>
<textarea id='pdfinfo' style='font-family: Courier New; font-size: 10pt;
width: 99%;' rows=8 spellcheck='false'></textarea>
这很好 - 直到某一点 - 当输入大量文本并且它太多而无法通过时。
有没有办法可以从postsurvey.php
脚本中引用textarea?