Eclipse中html标记<command />的位置无效

时间:2014-04-22 23:36:01

标签: eclipse html5

鉴于代码:

<!doctype html>
<html>
<body>
<menu id="html5menu" type="context" style="display:none" class="showcase">
  <command label="rotate" onclick="alert('rotate')"></command>
  <command label="resize" onclick="alert('resize')"></command>
  <menu label="share">
    <command label="twitter" onclick="alert('twitter')"></command>
    <hr>
    <command label="facebook" onclick="alert('facebook')"></command>
  </menu>
</menu>
</body>
</html>

我在Eclipse中收到警告:

Invalid location of tag (command).

根据我在网络上发现的标签正确使用的示例。这是一个Eclipse&#39; false&#39;警告或我错过了什么?

0 个答案:

没有答案