admin管理员组文章数量:1344975
I'm trying to post ment with an AJAX post. But last ment
element contains submit button. And after appending, new item appears after submit button.
<div class="mentContainer" >
<div class="ment">
<div class="mentText">Any ment1 ... </div>
</div>
<div class="ment">
<div class="mentText">Any ment2 ... </div>
</div>
....................................
<div class="ment">
<div class="sendPanel">
<input type="submit" value="Post" />
</div>
</div>
</div>
and result of posting request:
success: function (result) {
if (result.success) {
$('mentContainer').append('<div class="ment"><div class="mentText">' + result.text + '</div></div>');
}
}
I want to keep submit button on the end always. How can I do this?
I'm trying to post ment with an AJAX post. But last ment
element contains submit button. And after appending, new item appears after submit button.
<div class="mentContainer" >
<div class="ment">
<div class="mentText">Any ment1 ... </div>
</div>
<div class="ment">
<div class="mentText">Any ment2 ... </div>
</div>
....................................
<div class="ment">
<div class="sendPanel">
<input type="submit" value="Post" />
</div>
</div>
</div>
and result of posting request:
success: function (result) {
if (result.success) {
$('.mentContainer').append('<div class="ment"><div class="mentText">' + result.text + '</div></div>');
}
}
I want to keep submit button on the end always. How can I do this?
Share edited Dec 10, 2016 at 3:01 eightShirt 1,4473 gold badges16 silver badges31 bronze badges asked Jul 14, 2013 at 17:51 Jeyhun RahimovJeyhun Rahimov 3,7876 gold badges48 silver badges93 bronze badges 1- Thanks for all for help. – Jeyhun Rahimov Commented Jul 14, 2013 at 18:09
4 Answers
Reset to default 4Try this
$('<div class="ment"><div class="mentText">' + result.text + '</div></div>')
.insertBefore('mentContainer .ment:last-child');
Or even better
$('<div>', {'class': 'ment'}).append(
$('<div>', {'class': 'mentText', text: result.text})
).insertBefore('.mentContainer .ment:last-child');
This one is better for performance
Demo
jQuery last-child
jQuery insertBefore
You can use the :last pseudo-selector:
try this:
success: function (result)
{
if (result.success)
{
$('.mentContainer').find('div:last').before('<div class="ment"><div class="mentText">' + result.text + '</div></div>');
}
}
Try this :
success: function (result)
{
if (result.success)
{
$('<div class="ment"><div class="mentText">' + result.text + '</div></div>').insertBefore('.mentContainer .ment:last');
}
}
I know this question specifically asked about jQuery
but this can be done with plain JS quite neatly, with the insertBefore()
function, MDN. (I came across this post while looking for a solution to a similar problem but not using jQuery)
ul = document.getElementById('my-list-id'); //Get the list from the DOM
li = document.createElement('li'); // Create the element to append
ul.insertBefore(li, ul.lastChild); // Append the element before the last child
本文标签: javascriptAppend element not to endbefore last element in jQueryStack Overflow
版权声明:本文标题:javascript - Append element not to end, before last element in jQuery - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743773121a2536484.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论