根据下拉列表中的选择转发到新页面,无需使用 JavaScript

发布于 2024-11-05 09:54:01 字数 555 浏览 0 评论 0原文

我正在尝试从 JSP 中删除 JavaScript。目前我正在使用类似的东西根据下拉列表中的选择转发到我需要的页面。

function STFS() {
    var url = document.stform.typeOptions.options[document.stform.typeOptions.selectedIndex].value;
    if (url!=0) {
        window.location=url;
    }
}

我怎样才能在不使用 javascript 的情况下做同样的事情。 我尝试在“select onChange”中设置 window.location,如下所示:

<select name="typeOptions" onChange="window.location=this.options[this.selectedIndex].value;">

但是当我提交表单时,它不会转到预期的网址。我一定是错过了什么。 这是一个portlet环境,URL比较长。 任何帮助表示赞赏。谢谢

I am trying to remove JavaScript from my JSP. Currently i am using something like this to forward to the page i need based on the selection in the drop-down list.

function STFS() {
    var url = document.stform.typeOptions.options[document.stform.typeOptions.selectedIndex].value;
    if (url!=0) {
        window.location=url;
    }
}

How can i do the same thing without using javascript.
I tried setting the window.location in the 'select onChange' as follows:

<select name="typeOptions" onChange="window.location=this.options[this.selectedIndex].value;">

But when i submit the form, it doesn't go to the expected url. I must be missing something.
This is a portlet environment and the URL is relatively long.
Any help is appreciated. Thanks

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

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

发布评论

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

评论(1

吲‖鸣 2024-11-12 09:54:01

使用 onchange 而不是 onChange (这不是真正的问题,因为很多浏览器对此很宽容,但这显然是不正确的)并确保您正在运行您认为您正在运行的代码(即您没有运行旧版本或浏览器缓存版本)并且您实际上正在更改下拉项,而不是简单地按表单提交按钮(onchange当您提交时不会运行表单)。


根据评论更新

太棒了!我真是太菜鸟了。谢谢。没有 javascript 的原因是即使在禁用 javascript 的情况下也能让网站正常工作。由于此页面中涉及的脚本量只是该函数,因此我认为最好摆脱它。但是,如果有人可以建议任何其他方法来实现这一目标。我会很高兴的。我也愿意使用

将其更改如下:

<form action="redirect">
    <select name="url">
        ...
    </select>
    <input type="submit">
</form>

使用 RedirectServlet 类,该类映射到 /redirect 的 URL 模式,并且基本上在 中执行以下工作doGet() 方法:

response.sendRedirect(request.getParameter("url"));

Use onchange instead of onChange (not the real problem since lot of browsers are forgiving on this, but it is plain incorrect) and ensure that you're running the code you think you're running (i.e. you're not running an old or browser-cached version) and that you're really changing the dropdown item instead of plain pressing the form submit button (the onchange doesn't run when you submit the form).


Update as per the comment

great! that's so noob of me. thanks. the reason for no javascript is to make the site work even when javascript is disabled. since the amount of script involved in this page is just that function, i thought it would be better to get rid of that. but, if anyone can suggest any other way to achieve this. i'll be glad. i am open to using as well

Change it as follows:

<form action="redirect">
    <select name="url">
        ...
    </select>
    <input type="submit">
</form>

with a RedirectServlet class which is mapped on an URL pattern of /redirect and does basically the following job in doGet() method:

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