如何访问不存在的标签?
如果您创建以下 HTML:
<table>
<tr>
<td></td>
<td>Last1</td>
<SPAN><FONT>test1</FONT></SPAN>
</tr>
</table>
并检查 DOM 模型,您将看到 IE(也许其他)创建无名称的标签。
这是屏幕截图的链接屏幕截图:
是否有可能获得是否可以访问该标签?
If you create following HTML below:
<table>
<tr>
<td></td>
<td>Last1</td>
<SPAN><FONT>test1</FONT></SPAN>
</tr>
</table>
and check DOM model you will see that IE(maybe others) create tag with no-name.
Here is link to screenshot Screenshot:
Are there any possibility to get access to this tag or not ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 HTML 无效。
您只能将
和
元素直接放入
中。
浏览器创建此标签是为了修复损坏的标记。
您应该更正您的 HTML。
Your HTML is invalid.
You can only put
<td>
and<th>
elements directly inside<tr>
s.The browser is creating this tag in an attempt to fix your broken markup.
You should correct your HTML.