是否可以为Eclipse中的html文件启用//TODO
和//FIXME
等任务标记?我已经检查了Eclipse的设置,并且HTML文件没有“任务标签”部分。问题是我在html本身并没有真正使用这些任务标签;他们在html文件中的javascript块中。即使它们位于html文件中,以某种方式捕获它们也会很好。
答案 0 :(得分:5)
不幸的是,Eclipse无法识别HTML中嵌入的JavaScript的任务标签。但是,您可以使用HTML注释在JavaScript块周围添加任务标记。例如:
<!DOCTYPE html>
<html>
<head>
<!-- TODO: Add meta tags and page title here. -->
</head>
<body>
<h1>Title</h1>
<!-- FIXME: There might be a semicolon missing in this code. -->
<script type="text/javascript">
// TODO: This comment will not be added to Task Tags in Eclipse.
var i = 0
</script>
</body>
</html>
会导致以下说明出现在“任务”视图中:
TODO: Add meta tags and page title here.
FIXME: There might be a semicolon missing in this code.
要在Eclipse中启用任务标记,请转到首选项&gt;一般&gt;编辑&gt;结构化文本编辑器&gt;任务标签。
( Eclipse Java EE IDE for Web Developers。版本:Indigo Service Release 1 Build id:20110916-0149 )