Javascript - 基于下拉选择的 URL - 如果所有下拉列表变量均为空白,则转到特定 URL
到目前为止,这是我的代码: 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个:
Try this: