-1); 但这部分没有: var currentLocation = window.location-6ren">
gpt4 book ai didi

javascript - 故障排除索引

转载 作者:行者123 更新时间:2023-12-02 16:59:39 25 4
gpt4 key购买 nike

这部分如何返回结果:

var s = "foo";
alert(s.indexOf("oo") > -1);

但这部分没有:

var currentLocation = window.location;
alert(currentLocation.indexOf(".") > -1);

最佳答案

因为window.locaton不是字符串。它是一个带有 several properties 的对象.

您可以检查 window.location.href 来获取整个 URL(保证包含一个点),或者检查 window.location.pathname 来获取路径(在域)。

关于javascript - 故障排除索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25864812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com