首页 > 其他 > 详细

Invalid location of tag(th)

时间:2017-08-30 23:21:00      阅读:904      评论:0      收藏:0      [点我收藏+]

编译环境: 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)

原文:http://www.cnblogs.com/v-BigdoG-v/p/7455703.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!