Jquery 追加不能与一起使用标签
我试图附加到这段代码:
<table class="stores" border="1" cellspacing="10">
<tr>Stores:</tr>
</table>
我想要工作的这段代码不起作用:
$('.stores').append('<tr>Test</tr>');
这个确实有效:
$('.stores').append('<p>Test</p>');
你能说出为什么吗?
PS 不确定这是否重要,但我正在 WordPress 下工作。
I'm trying to append to this code:
<table class="stores" border="1" cellspacing="10">
<tr>Stores:</tr>
</table>
This code, which I want to work, doesn't:
$('.stores').append('<tr>Test</tr>');
This one does work:
$('.stores').append('<p>Test</p>');
Can you say why?
P.S. Not sure it matters but I'm working under WordPress.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
tr 标签之间不能有文本。试试这个:
You can't have text between tr-tags. Try this:
这不是有效的 HTML。您缺少
当您更改标记时工作正常:http: //jsfiddle.net/jomanlk/XHvVk/
That's not valid HTML. You're missing the
<td>
Works fine when you change the markup : http://jsfiddle.net/jomanlk/XHvVk/