选择重定向
在考虑另一个问题时,出现了一个问题。 当我想在选择选项更改时重定向页面时,我不知道如何编写 html。 换句话说,用户从选择列表中选择选项,然后页面会重定向。
你遇到过这样的事情吗?
问候,
While considering another problem one question appeared.
I do not know how to write html when I want to redirect page when select option changes.
In other words user chooses option from select list and page is redirected after that.
Have you met anything like this?
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用更改事件处理程序轻松完成此操作;请参阅使用内联 onchange 的此示例。不过,您没有说明如何构建目标 URL。
You can do this easily with an change event handler; see this example using an inline onchange. You didn't say how to construct the destination URL, though.
要做这样的事情,需要 JavaScript。
您需要创建一个 onchange 函数,该函数以您的选择下拉列表为目标,每个选择项都有不同的值(可能是 url)。或者,您可以在函数的数组中定义 url。获取所需的 url 值后,您可以使用 JS 自动将链接发送到 url 浏览器中,发送到您需要的地方。
To do something like this, Javascript is required.
You would need to created a onchange function that targets your select dropdown with each select item having a different value, perhaps a url. Or, you can have the url's defined within an array within your function. On getting the url value required, you can you JS to auto-send the link into the url browser, going where you need it to go.