我有一个带有文本框的 div。
<div id="DvPrint">
<div>
<input type="text" style="width: 100px;
margin-left: 25px;" class="textbox" id="ctl00_content_TxtLetterNumber" readonly="readonly" name="ctl00$content$TxtLetterNumber">
</div>
</div>
现在我使用在新窗口中写入 div 内容window.open.
n = window.open('M80Print.aspx', '_blank', 'status=no,toolbar=no,menubar=yes,height=550px,width=640px');
n.document.open();
n.document.write($('#DvPrint').html());
现在我想在新打开的窗口中更改文本框的值。我该怎么做??像这样的东西:
n.document.getElementById('ctl00_content_TxtLetterNumber').innerHTML = "1";
但它不起作用。