文本链接不会在 Safari 中使用名称通过 JavaScript 提交表单
我使用的是 Safari 5.0.3 我的 html 中有一个表单:
<form name="searchForm" style="margin-top:24px;">
<h4 style="float:left;margin-top:-1px;">Search</h4>
<input type="text" name="keywords" id="keywords"></input> <a href="#" onClick="document.forms[0].submit(); return false">Go ></a>
</form>
这工作正常:
a href="#" onClick="document.forms[0].submit(); return false"
但这没有任何作用:
a href="#" onClick="document.forms['searchForm'].submit(); return false"
我需要使用后者,因为页面模板是动态的,有时之前的页面中会有一个表单这个。
I'm using Safari 5.0.3 I have a form in my html:
<form name="searchForm" style="margin-top:24px;">
<h4 style="float:left;margin-top:-1px;">Search</h4>
<input type="text" name="keywords" id="keywords"></input> <a href="#" onClick="document.forms[0].submit(); return false">Go ></a>
</form>
This works fine:
a href="#" onClick="document.forms[0].submit(); return false"
but this does nothing:
a href="#" onClick="document.forms['searchForm'].submit(); return false"
I need to use the latter, because the page template is dynamic, and sometimes there will be a form in the page before this one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用: document.getElementById('searchForm').submit() 代替。
Use: document.getElementById('searchForm').submit() instead.
尝试一下:
如果这不起作用,Macy Abbey 有一个好主意,即向表单添加 id 并通过它引用它。
Try this out:
If that doesn't work, Macy Abbey has a great idea of adding an id to the form and referencing it by that.