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>.

时间: 2024-10-17 17:56:19

Invalid location of tag(th)的相关文章

eclipse中jsp页面Invalid location of tag 解决办法分析小结

在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><

Eclipse中Jsp页面警告的解决方法小结

恩,只要是开发人员,这样的小事情总会遇到的,对于这其中的某些警告性的错误是不影响代码的运行的,对应的功能也是能实现的,不过总给人一种不太好看的感觉!如果代码写的比较符合规范,这些问题也就自然而然的消失了,所以解决这类问题的思路有点像中医的思想之一——找到不通的地方,疏通它,我们是找到不规范的代码将其规范化! 序号 问题提示 参考解决方案 1 Invalid location of tag (style).(style标签所在的位置无效) 将对应的style标签写到head标签之中 2 Inval

HttpClient取得自定义的状态码302,并获取Header中的参数Location

1.导入如下两个包: 下载地址:http://files.cnblogs.com/files/zhougaojun/httpclient_lib.zip 2.接收Google返回的302状态码,并获得Location参数,如下是代码关键部分 DefaultHttpClient httpclient = new DefaultHttpClient(); String location = null; int responseCode = 0; try { final HttpGet request

[LeetCode] Tag Validator 标签验证器

Given a string representing a code snippet, you need to implement a tag validator to parse the code and return whether it is valid. A code snippet is valid if all the following rules hold: The code must be wrapped in a valid closed tag. Otherwise, th

[Swift]LeetCode591. 标签验证器 | Tag Validator

Given a string representing a code snippet, you need to implement a tag validator to parse the code and return whether it is valid. A code snippet is valid if all the following rules hold: The code must be wrapped in a valid closed tag. Otherwise, th

Flexible implementation of a system management mode (SMM) in a processor

A?system?management?mode?(SMM) of operating a processor includes only a basic set of hardwired hooks or mechanisms in the processor for supporting SMM. Most of SMM functionality, such as the processing actions performed when entering and exiting SMM,

微软Hololens学院教程-Hologram 230-空间映射(Spatial mapping )

空间映射地图是将真实环境的环境信息扫描到设备中,使得全息对象可以识别真实场景环境,从而达到可以将虚拟对象与真实世界相结合的效果.这节教程主要学习内容如下: 使用Hololens扫描空间环境并将空间数据导入到开发计算机中. 学习利用shader给空间网格赋予材质以便其更容易被发现. 使用网格处理方法将网格变成简单的平面. 对全息对象可以放置的位置进行放置提醒,使得用户更容易的放置. 开发遮挡效果,即当全息对象被真实场景中的物体遮挡时,你仍然可以看见它,只不过它是线框模式的. 项目文件: Downl

互联网级监控系统必备-时序数据库之Influxdb技术

时间序列数据库,简称时序数据库,Time Series Database,一个全新的领域,最大的特点就是每个条数据都带有Time列. 时序数据库到底能用到什么业务场景,答案是:监控系统. Baidu一下,互联网监控系统,大家会发现小米.饿了吗等互联网巨头都在用时序数据库实现企业级的互联网监控系统. 很多人会说,用Zabbix不就搞定了,其实不是这样的,简单的主机资源监控.网络监控.小规模的部署环境,Zabbix能搞定. 如果在IDC 上千台服务器环境下,分布式应用架构.各种中间件,这种情况下我们

Speculative store buffer

A speculative?store?buffer is speculatively updated in response to speculative store?memory operations buffered by a?load/store?unit in a microprocessor. Instead of performing dependency checking for?load?memory operations among the?store?memory oper