我知道这个话题并不具体。让我告诉你。
我有一个文本框和按钮。当您输入内容并单击按钮时,它会创建 div 并将其附加到另一个 div。但问题是它必须将其附加到页面顶部。它将成为第二个 div。
jQuery代码:
$('#send').click(function() {
var not=$('#not').val();
$.ajax({
type:"POST",
url: "some.php?islem=not",
data:{not:not},
success: function(result){
$('#comment_box').append('<div class="comment">'+not+'</div>');
}
});
});
html代码:
<textarea style="width: 794px; height: 48px;" id="not"></textarea>
<input type="button" value="Yolla" style="margin-top:35px;" id="send"/>
<div id="comment_box">
<div class="comment">comment-1</div>
<div class="comment">there is comment in here-2</div>
<div class="comment">there is comment in here-3</div>
<div class="comment">there is comment in here-4</div>
<div class="comment">there is comment in here-5</div>
</div>
当我添加一些东西时,新的 div 在comment-1 之后显示,我希望它是第一个。因为它是最新的评论,它必须是第一个,在页面的顶部。
抱歉英语不好。