你的Jsp页面有黄×么,有黄色问号么?Multiple annotations found at this line: - Invalid location o
程序员文章站
2022-04-12 20:20:51
jsp页面有黄色问号代表我们的html标签不符合规范
对于很多人拿到页面美工给的页面,有时候很多都有黄色的问号。
为什么会这样呢?
M...
jsp页面有黄色问号代表我们的html标签不符合规范
对于很多人拿到页面美工给的页面,有时候很多都有黄色的问号。
为什么会这样呢?
Multiple annotations found at this line:
- Invalid location of tag (form).
- No end tag (</form>).
其实原因很简单,也就是说我们将html标签的嵌套层次写错了
而一般我们美工做的页面都是存在这样一个问题
将 from 嵌入到了table中
所以 , 解决此类问题也很简单
(1)将html标签的嵌套层次写好
(2)将form写入到table标签之外
上一篇: MySQL数据库操作之索引的操作实例