如何在 JavaScript 中自动提交表单?
我有一个带有输入文本字段的表单,每隔几秒导入一次数据并将其显示在表单字段中,让我们说:
<input name="code" id="code" type="text" size="64" maxlength="128" />
和一个提交按钮,我的表单的表单名称为 form1。 我希望表单字段中的数据更改后立即单击提交按钮。 我确实尝试执行以下操作。在标题中,我确实添加了以下 javascript:
<SCRIPT LANGUAGE="javascript">
function send_data()
{
document.form1.submit();
}
</SCRIPT>
和表单:
<input name="code" id="code" type="text" size="64" maxlength="128" onchange="send_data();" />
但它不起作用..
有什么帮助吗?
谢谢
I have a form with an input text field which imports data every couple of seconds and display it in the form field , let us say :
<input name="code" id="code" type="text" size="64" maxlength="128" />
and a submit button and my form has the formname form1.
I want the submit button to be clicked as soon as the data in the form field is changed.
I did try to do the following. In the header I did add the follwoing javascript:
<SCRIPT LANGUAGE="javascript">
function send_data()
{
document.form1.submit();
}
</SCRIPT>
and on the form :
<input name="code" id="code" type="text" size="64" maxlength="128" onchange="send_data();" />
but it didn`t work..
Any help ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西会起作用:
但我要添加一些警告:
getElementById
并引用该表单,而不是document.forms[x]
Something like this would work:
But I'd add a few caveats:
getElementById
and referencing that instead ofdocument.forms[x]