Chrome 和 IE9 中出现不可见的 ILLEGAL TOKEN 错误,但 Firefox 中没有

发布于 2024-12-10 01:24:03 字数 541 浏览 0 评论 0原文

查看此 HTML 页面:http://ecmazing.com/wtf.html

在 Chrome 和 IE9 中抛出非法令牌/无效字符错误。

该页面的源代码:

<!doctype html>            

<html>    
    <head>    
        <meta charset="utf-8">    
        <title>WTF</title>    
    </head>    
    <body>    
        <script>    
            var foo = 'bar';​    
        </script>    
    </body>    
</html>

这里发生了什么?上面的代码没有语法错误。

Check out this HTML-page: http://ecmazing.com/wtf.html

In Chrome and IE9 an Illegal token / invalid character error is thrown.

The source code of that page:

<!doctype html>            

<html>    
    <head>    
        <meta charset="utf-8">    
        <title>WTF</title>    
    </head>    
    <body>    
        <script>    
            var foo = 'bar';​    
        </script>    
    </body>    
</html>

What is going on here? There is no syntax error in the above code.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难遇 2024-12-17 01:24:03

如果你选择bar并使用shift+向右箭头连续选择下一个字符,你会看到;后面有一个看不见的字符。

"​".charCodeAt(0) === 8203

似乎是一个“零宽度空格”。我想知道为什么这个角色除了引起挫败感之外还存在。

If you select bar and use shift + right arrow to contineously select the next character, you'll see there is an invisible one behind the ;.

"​".charCodeAt(0) === 8203

It appears to be a "zero width space". I wonder why that character exists apart from causing frustration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文