找到位置后,我当前的代码正在运行。但我想检查一下,如果找不到位置,它会重定向到其他地方。
这是我的代码:
<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://"
不存在