好的,我已经设置了自己的对话框,并在对话框中放置了一个文本框和一个按钮。我想要做的是让他们输入文本框中的信息,然后在我关闭对话框后自动填充下一页上的表单。我遇到了自动填充部分的问题。有任何想法吗?这是我的对话框,我的表单名称已发货。
showDialog(
'<p>Enter in Non Client Job Code</p>
<div class="margin-top"><input type="text" size="15" name="projectnumber" id="projectnumber" value="" /><br />
<input type="button" onclick="fillin()" value="Enter" />'
);
答案 0 :(得分:0)
我不确定这是否会解决问题,但你错过了结束标记。
showDialog('
<p>Enter in Non Client Job Code</p>
<div class="margin-top">
<input type="text" size="15" name="projectnumber" id="projectnumber" value="" />
<br />
<input type="button" onclick="fillin()" value="Enter" />
</div>
');