在 Javascript HTML 中使用带有部分地址的 if 语句
尝试找出一种方法,使用 Javascript 来设置一个小 if-else 语句,仅使用 url 的一部分来确定它是否应该去某个地方。到目前为止我得到的是,
<script>
if (url==example.com) {
window.open('1stoption','1stoption');
} else {
window.open('2ndoption','2ndoption');
}
到目前为止的问题是,如果是 exampleample.com/whatever 或类似的东西,则不算数。
感谢您的任何帮助。
*编辑谢谢大家,它有效,但我的问题措辞错误,它应该更多地沿着显示链接的路线,但根据网址将链接转到两个单独的页面。这个东西很有效,我正在尝试让它也按照我的方式工作。多谢。
Trying to figure out a way to use Javascript to set up a little if-else statement using only part of the url to determine if it should go somewhere or not. So far what I got is,
<script>
if (url==example.com) {
window.open('1stoption','1stoption');
} else {
window.open('2ndoption','2ndoption');
}
The problems so far are that it doesnt count if its exampample.com/whatever or anything like that.
Thanks for any help.
*edit Thanks guys it worked but I worded my question wrong, it should be more along the lines of showing a link but having the link go to two separate pages depending on the url. This stuff works and I'm kicking it around to get it to work my way too. Thanks alot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要进行精确匹配,而是在 url 字符串中搜索您想要接受的子字符串。
Instead of making an exact match search the url string for the sub-string that you want to accept.
也许这就是你想要的?
如果在网址中的任何位置找到
example.com
,这将打开窗口first option
maybe this is what you want?
This will open window
first option
if it findsexample.com
anywhere within the url