Javascript - 基于下拉选择的 URL - 如果所有下拉列表变量均为空白,则转到特定 URL

发布于 2024-11-14 10:11:51 字数 335 浏览 2 评论 0原文

到目前为止,这是我的代码: http://jsfiddle.net/zY3xx/

我总共有一个空白选项3 个下拉菜单,我想修改现有的 Javascript,以便如果所有 3 个下拉菜单都选择了空白选项,它就会转到特定的 URL。变量实际上是空的,所以它应该是这样的:

if newURL = "" then goto "http://mycustomurl.com"

我只是不确定如何在 Javascript 中实现该选项。

有人知道怎么做吗?

This is my code so far: http://jsfiddle.net/zY3xx/

I have a blank option in all 3 dropdowns, and I want to modify the existing Javascript so that it goes to a specific URL if all 3 dropdowns have the blank option selected. The Variable is literally left empty, so it should be something along the lines of:

if newURL = "" then goto "http://mycustomurl.com"

I'm just not sure how to implement that option in Javascript.

Does anyone know how?

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

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

发布评论

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

评论(1

胡大本事 2024-11-21 10:11:51

尝试这个

    if (newUrl.length === 0) {
        newUrl = 'http://google.com';
    }

Try this:

    if (newUrl.length === 0) {
        newUrl = 'http://google.com';
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文