gpt4 book ai didi

javascript try catch 在 firefox 中不能完全工作

转载 作者:行者123 更新时间:2023-11-29 10:15:50 25 4
gpt4 key购买 nike

谁能解释一下这是为什么:

<html>
<head></head>
<body>
<script>
try {
document.attribute-withminus = 5;
}
catch(e) {
alert('something went wrong');
}

alert('ok');
</script>
</body>
</html>

没有给我“出现问题”的警报,也没有“确定”的警报吗?

它在 chrome 中运行良好。但在 firefox 中,它只是退出(它确实在 web 控制台中显示错误)。 try-catch 的全部意义在于确保如果我输入错误,它应该给我一个警告。我不想一直打开 Web 控制台。

另外,我知道这里出了什么问题(减号属性;应该使用 setAttribute)。我在问为什么没有发现我的错误。

最佳答案

document.attribute-withminus = 5;

是一个语法错误(可能类似于“赋值中的左手部分无效”),它是一个early error ,不是运行时错误。

浏览器不应该执行包含它的脚本,它应该在编译包含错误的代码后立即停止并报告错误,然后再进行任何评估。在大多数浏览器中,脚本会在到达 try 子句之前被完全编译。它适用于 Chrome,因为 Chrome 会延迟编译,直到它需要内部 block 。

关于javascript try catch 在 firefox 中不能完全工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22037163/

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