我有一个简单的 html 假设
<table>
<tbody>
<tr>
<td>
<span>Customer Type </span>
</td>
<td>
<input id="TxtCustomerName" name="TxtCustomerName" type="text">
</td>
</tr>
</tbody>
</table>
现在我正在尝试在弹出窗口中生成一个 html 作为
myWindow=window.open('','','width=200,height=100')
var html="<body><table><tbody><tr>";
html+="<td><span>Customer Type</span></td>";
html+="<td><input id="TxtCustomerName" name="TxtCustomerName" type="text"></td>"
html+="</tr></tbody></table><body>";
alert(html);
myWindow.document.write(html)
myWindow.focus()
但是没有出现opoup。此外,由于控制输入文本,此错误正在发生。帮助我将控件集成到 html 变量中,以便弹出窗口带有控件。