根据两个菜单选择转到页面

发布于 2024-09-10 04:44:31 字数 503 浏览 3 评论 0原文

这里是 Javascript 菜鸟(我假设我需要 Javascript 来解决这个问题)。

我需要创建一个页面,根据用户从两个下拉列表中所做的选择来指导用户。

假设我有一个包含两个列表的表单:

A 包含

<option>1</option>
<option>2</option>
<option>3</option>

B 包含

<option>1</option>
<option>2</option>
<option>3</option>

,对于 AI 选择 3,对于 BI 选择 1。

当我按提交时,我想链接到 www.example.com/example.php?a=3&b =1

如何根据两个用户的选择更改链接?

Javascript noob here (I'm assuming I will need Javascript to solve this).

I need to make a page which directs a user depending on the selection they make from two dropdown lists.

Lets say I have a form with two lists:

A contains

<option>1</option>
<option>2</option>
<option>3</option>

B contains

<option>1</option>
<option>2</option>
<option>3</option>

and for A I select 3 and for B I select 1.

When I press submit, I want to link to www.example.com/example.php?a=3&b=1

How do I go about changing the link based on the two user selections?

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

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

发布评论

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

评论(2

当爱已成负担 2024-09-17 04:44:31

只需将这些菜单放入方法设置为 GET 的 one 表单中即可:

<form action="example.php" method="get">
<!-- here your menus-->

<!-- this will create a button to send the data-->
<input type="submit" value="Go" />
</from>

当然,您必须正确命名

<select name="a">
  <option>1</option>
  <option>2</option>
  <option>3</option>
</select>

Just put those menus inside one form that has the method set to GET:

<form action="example.php" method="get">
<!-- here your menus-->

<!-- this will create a button to send the data-->
<input type="submit" value="Go" />
</from>

Of course, you will have to properly name your <select> elements:

<select name="a">
  <option>1</option>
  <option>2</option>
  <option>3</option>
</select>
七堇年 2024-09-17 04:44:31

如果您执行 HTTP GET,您应该会自动从表单中获取该信息。

If you do a HTTP GET, you should get that automatically from your form.

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