在jsp頁面使用標籤過程當中有時候不注意規則的話,eclipse會提示一些錯誤,下面針對這些錯誤提出相應的解決辦法:eclipse
<form></form>標籤jsp
1. Invalid location of tag (form)orm
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裏面,大寫的話就報錯,因此要改爲小寫吧。ip
5.Invalid location of tag (legend)io
legend要寫在<field>或<fieldset>中table