文本链接不会在 Safari 中使用名称通过 JavaScript 提交表单

发布于 2024-10-14 21:59:52 字数 646 浏览 5 评论 0原文

我使用的是 Safari 5.0.3 我的 html 中有一个表单:

<form name="searchForm" style="margin-top:24px;">
<h4 style="float:left;margin-top:-1px;">Search</h4> 
&nbsp; <input type="text" name="keywords" id="keywords"></input> &nbsp; <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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-10-21 21:59:52

使用: document.getElementById('searchForm').submit() 代替。

Use: document.getElementById('searchForm').submit() instead.

听风吹 2024-10-21 21:59:52

尝试一下:

<a href="#" onClick="document.searchForm.submit(); return false;">

如果这不起作用,Macy Abbey 有一个好主意,即向表单添加 id 并通过它引用它。

Try this out:

<a href="#" onClick="document.searchForm.submit(); return false;">

If that doesn't work, Macy Abbey has a great idea of adding an id to the form and referencing it by that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文