在jsp页面使用标签过程中有时候不注意规则的话,eclipse会提示一些错误,下面针对这些错误提出相应的解决办法:

<form></form>标签

1. Invalid location of tag (form)

  form 应该写到table外面去,并且form标签里面也不能套form标签。
<style></style>
2. Invalid location of tag (style)
  style应该写在head里面。
<script></script>
3. Invalid location of tag (script)
  script应该写到body,head里面。

4.Attribute name(Name) uses wrong case character
  虽说HTML不区分大小写,但是在eclipse里面,大写的话就报错,所以要改成小写吧。

5.Invalid location of tag (legend)

legend要写在<field>或<fieldset>中

相关文章:

  • 2021-10-27
  • 2022-01-10
  • 2021-07-30
  • 2022-01-20
  • 2021-04-02
  • 2022-12-23
  • 2022-02-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-20
  • 2021-11-27
  • 2021-12-07
相关资源
相似解决方案