插入数据并使用jQuery选择 - 追加

时间:2014-12-28 17:49:14

标签: jquery append

我的代码jquery和我一起工作正常,

问题是当我插入数据并选择其追加然后向下然后向下:)我不会追加最后追加数据

这是代码:

<script>
    $(function(){
        $('#categorie-form').submit(function(){
            $.post("categorie.php?type=categorie",$('#categorie-form').serialize(),function(categorie){
                $("#showCategorie").append(categorie);
                $("[name=categories]").val("");
            });
            return false;
        });
    });
</script>

<div id="showCategorie" ></div>

我希望回答简单。

1 个答案:

答案 0 :(得分:1)

尝试将$("#showCategorie").append(categorie);替换为$("#showCategorie").prepend(categorie);

有关向DOM添加内容的不同功能的清晰说明,请参阅.append(), prepend(), .after() and .before()