) 转义引号是非法的?-6ren"> ) 转义引号是非法的?-我正在尝试使用转义字符。 第二个在开发控制台中产生非法字符。为什么?为什么我不能使用转义字符? 演示:http://jsfiddle.net/h7nnk/1/ 最佳答案 因为 \ 不是 HTML -6ren">
gpt4 book ai didi

javascript - ) 转义引号是非法的?

转载 作者:行者123 更新时间:2023-11-28 04:19:45 25 4
gpt4 key购买 nike

我正在尝试使用转义字符。

<img src="x" onerror=alert('hello'); />

<img src="x" onerror="alert(\"hello\")" />

第二个在开发控制台中产生非法字符。为什么?为什么我不能使用转义字符?

演示:http://jsfiddle.net/h7nnk/1/

最佳答案

因为 \ 不是 HTML 中的转义字符。

<img src="x" onerror="alert(&quot;hello&quot;)" />

或者,根据@mplungjan 的评论:

<img src="x" onerror="alert('hello')" />

或者,更好的是:

<img src="x" id="derp" />
<script type="text/javascript">
document.getElementById('derp').addEventListener("error",function() {
alert('hello');
},false);
</script>

关于javascript - <img src ="x"onerror ="alert(\"hello\")"/>) 转义引号是非法的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24515021/

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