Invalid location of tag(th)

Posted 笑面浮屠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Invalid location of tag(th)相关的知识,希望对你有一定的参考价值。

编译环境: Windows7+Ecliplse+Django

 

 1     <table border="1">
 2         <thead>
 3             <tr>
 4                 <th>用户名</th>
 5                 <th>密码</th>
 6             </tr>
 7         </thead>
 8         <tbody>
 9 
10             {% for line in data %}
11                 <tr>
12                     <td> {{ line.user}} </td>
13                     <td> {{ line.pwd }}</td>
14                 </tr>
15             {% endfor %}
16 
17         </tbody>
18     </table>

解决方法就是在<th>外面加<tr>.

 

以上是关于Invalid location of tag(th)的主要内容,如果未能解决你的问题,请参考以下文章

如何修复解析错误:Vue 中的 invalid-first-character-of-tag-name.eslint (vue/no-parsing-error)

vue Parsing error: x-invalid-end-tag

使用maven构建 ssm项目 tomcat7插件运行报错, Invalid byte tag in constant pool: 60

Can't locate Log/Dispatch.pm in @INC /Makefile out-of-date with respect to Makefile.PL

为啥我会收到 Invalid block tag: 'static' 错误?

tsdoc-param-tag-with-invalid-name:@param 块后面应该跟一个有效的参数名称(TypeScript ESLint 和 React)