0

我有一个带有文本框的 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";

但它不起作用。

4

1 回答 1

3
n.document.getElementById('ctl00_content_TxtLetterNumber').value = "1";

更改文本框值是用 完成的value,而不是用innerHTML.

jQuery:

$('#ctl00_content_TxtLetterNumber', n.document).val('1');
于 2012-05-13T12:23:28.057 回答