VSCode 无法突出显示字符串文字语法

问题描述 投票:0回答:1

我正在使用 Visual Studio Code(v.1.95.2)开发一个网站,但语法突出显示似乎很混乱。当 HTML div 元素具有

onclick
属性且字符串中包含 JS 代码时,就会发生这种情况。下面显示了一个示例。

JS code highlighted wrong, with text after '//' in a string literal being seen as a comment

我尝试使用

code --disable-extensions
禁用所有扩展,但语法错误仍然出现。

visual-studio-code syntax-highlighting
1个回答
0
投票

https://github.com/textmate/html.tmbundle/issues/113

引起

转义第二个斜杠

/
作为解决方法
<div onclick="window.open('https:/\/example.com')">

fix

© www.soinside.com 2019 - 2024. All rights reserved.