使用javascript从选项卡到表单的ID?

发布于 2024-09-16 17:42:05 字数 238 浏览 3 评论 0原文

好吧,我对 javascript 完全陌生,但我需要执行以下操作:

在我的页面上有选项卡(用 javascript 完成),然后有搜索表单。现在我需要从这些选项卡中获取一个 id 来放入该表单。

我有 tabs1 tabs2 tabs3 以及所有这些 href="#1"、href="#2" 等等。我需要从该选项卡中获取该数字以形成输入值。因此,如果使用单击 Tab2,它会自动将“2”作为值放入表单的输入之一中。怎么做呢?谢谢!

Ok, so Im totally new to javascript, but I would need to do following:

on my page I have tabs (done with javascript) and then I have search form. Now I need from those tabs a id to put to that form.

I have tabs1 tabs2 tabs3 and all those href="#1", href="#2" and so on. I would need to get that number out of that tab to form input value. So if use clicks Tab2, it would automatically put "2" as a value in one of my inputs of my form. How to do that? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风苍溪 2024-09-23 17:42:05

HTML 注释中的解释:

<!-- retrieves the value from href, skipping the first character -->
<a href="#1" onclick="document.forms.form_name.field_name.value=this.hash.substr(1)">Tab1</a>
<form name="form_name" action="" method="post">
<!-- defaults to tab 1 -->
<input type="hidden" name="field_name" value="1" />

</form>

Explaination in HTML comments:

<!-- retrieves the value from href, skipping the first character -->
<a href="#1" onclick="document.forms.form_name.field_name.value=this.hash.substr(1)">Tab1</a>
<form name="form_name" action="" method="post">
<!-- defaults to tab 1 -->
<input type="hidden" name="field_name" value="1" />

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