我的剧本的前几行看起来像:
if (window.location.hash) {
window.location = window.location.hash.substring(1);
}
如果此语句返回true,我希望“跳过”整个脚本。除了将我的整个脚本放在一个巨大的if语句中之外,还有什么方法可以做到这一点吗?
感谢。
答案 0 :(得分:5)
回来。
if (window.location.hash) {
window.location = window.location.hash.substring(1);
return;
}
请注意,脚本仍将解析直到结束,因此它必须始终是有效的JavaScript。但我认为你的意思是“解释”在标题中。