0

找到位置后,我当前的代码正在运行。但我想检查一下,如果找不到位置,它会重定向到其他地方。

这是我的代码:

<script type="text/javascript">
    var userAgent = window.navigator.userAgent;
    if (userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) {
        window.location = "theMYApp://"
    }
    else
    {

    }
</script>

我想检查是否window.location = "theMYApp://"不存在

4

1 回答 1

-1

如果要检查 web 浏览器上是否存在window.location对象,则无需检查。window.location对象始终存在。

如果你想在 window.location 对象中检查 'theMYApp://' 的文本,你可以使用下面的代码。

if (window.location.indexOf('theMYApp://') > -1) {
    // theMYApp:// string is found in url
}
于 2015-12-22T00:51:08.960 回答