作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 IntelliJIDEA javascript 代码中,当代码位于单独的 javascript 文件中时,语法高亮器工作正常。
但是,对于嵌入在 HTML 页面中的 Javascript 代码,不会突出显示。
有可用的修复方法吗?
编辑:添加了嵌入式 JavaScript 代码
<html>
<head>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Topping');
data.addColumn('number', 'Slices');
data.addRows([
['Mushrooms', 3],
['Onions', 1],
['Olives', 1],
['Zucchini', 1],
['Pepperoni', 2]
]);
// Set chart options
var options = {'title':'How Much Pizza I Ate Last Night',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>
<body>
<!--Div that will hold the pie chart-->
<div id="chart_div"></div>
</body>
</html>
最佳答案
当我发布这个问题时,我使用的是 IntelliJ IDEA 社区版,根据我的发现,IntelliJ IDEA 社区版不支持 Javascript。
引用此链接:https://www.jetbrains.com/idea/features/editions_comparison_matrix.html
我切换到 IntelliJ IDEA Ultimate Edition 并且 Javascript 突出显示工作正常。
关于javascript - 在 IntelliJ IDEA 中启用嵌入式 Javascript 语法突出显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27739546/
有没有一种方法可以“标记”对象的属性,使它们在反射中“突出”? 例如: class A { int aa, b; string s1, s2; public int AA
我是一名优秀的程序员,十分优秀!