如何在另一个元素之后添加一个元素?

发布于 2024-08-21 01:27:19 字数 272 浏览 6 评论 0 原文

我有一个特定的文本框,我想在它后面添加一个 div。 我尝试过 .append() 函数,但这只在元素中添加了 div。

例如,我有:

<input type="text" id="bla" />

我想将其更改为:

<input type="text" id="bla" /><div id="space"></div>

I have a certain textbox and I want to add a div after it.
I've tried the .append() function, but that only adds the div in the element.

For example, I have:

<input type="text" id="bla" />

and I want to change that into:

<input type="text" id="bla" /><div id="space"></div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

耳根太软 2024-08-28 01:27:19

尝试使用 after() 方法:

$('#bla').after('<div id="space"></div>');

文档

try using the after() method:

$('#bla').after('<div id="space"></div>');

Documentation

攒眉千度 2024-08-28 01:27:19

试试

.insertAfter()

在这里

$(content).insertAfter('#bla');

try

.insertAfter()

here

$(content).insertAfter('#bla');
记忆で 2024-08-28 01:27:19

首先, input 元素不应该有结束标签(来自 http://www.w3.org/TR/html401/interact/forms.html#edef-INPUT :结束标记:禁止
)。

第二件事,您需要 after(),而不是 append () 函数。

First of all, input element shouldn't have a closing tag (from http://www.w3.org/TR/html401/interact/forms.html#edef-INPUT : End tag: forbidden
).

Second thing, you need the after(), not append() function.

最丧也最甜 2024-08-28 01:27:19

已解决的 jQuery:在另一个元素之后添加元素

<script>
$( "p" ).after( "<strong>Hello</strong>" );
</script>

OR

<script type="text/javascript"> 
jQuery(document).ready(function(){
jQuery ( ".sidebar_cart" ) .insertAfter( "<a href='http://#'>Continue Shopping</a>" );
});
</script>

Solved jQuery: Add element after another element

<script>
$( "p" ).after( "<strong>Hello</strong>" );
</script>

OR

<script type="text/javascript"> 
jQuery(document).ready(function(){
jQuery ( ".sidebar_cart" ) .insertAfter( "<a href='http://#'>Continue Shopping</a>" );
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文