哪个更好/更快.append(“ <div> </div>”)或.append($(“ <div>”,{})

时间:2018-11-03 19:23:43

标签: jquery

我正在使用jquery制作一些div。有些div使用数据库中的信息,所以我使用.append($(“”,{})来创建它们。但是有些很简单,因此我一直在使用.append(“ Example Text”)。数据是静态的,没有XSS机会,哪个更好/更快?

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#mybutton").click(function(){
        $("#testdiv").append("<div>Example text 1</div>");
        $("#testdiv").append($("<div>",{text:"Example text 2"}));
    });
});
</script>
</head>
<body>
    <button id="mybutton">Append Button</button>
    <div id="testdiv"></div>
</body>

0 个答案:

没有答案