在特定位置插入 div
如何删除 mynavbar 并将其作为第一个元素附加到 main_table
<div id="mynavbar" > <div>Some content</div> </div>
<div id="main_table"> </div>
<script>
if(condtion == 0)
{
// How to remove mynavbar and insert into main_table div as the first element
}
</script>
How to remove mynavbar and append to main_table as the first element
<div id="mynavbar" > <div>Some content</div> </div>
<div id="main_table"> </div>
<script>
if(condtion == 0)
{
// How to remove mynavbar and insert into main_table div as the first element
}
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这是针对某些类型的非 jQuery 答案。
编辑:我很惊讶有 5 个几乎相同的答案。哎呀。
Here's a non-jQuery answer for some variety.
EDIT: I'm amazed that there's 5 nearly identical answers. Yikes.
对于删除你可以简单地使用...
但是一旦它被删除,它就不会出现在你的html中..你应该尝试这样的事情...
for remove you can simply use...
but once it will removed, it will not be there in your html..you should try something like this...