当找到位置时,我当前的代码正在运行。但我想检查一下,如果找不到位置,它会重定向到其他地方。
这是我的代码:
<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://"
是否不存在
答案 0 :(得分:-1)
如果要检查Web浏览器上是否存在 window.location 对象,则不进行检查。 window.location 对象始终存在。
如果要在window.location对象中检查'theMYApp://'的文本,可以使用以下代码。
if (window.location.indexOf('theMYApp://') > -1) {
// theMYApp:// string is found in url
}