宽容他人,放过自己。

js三种创建模块的方式

Posted on By anchoriteFili

function appendText() {
    var text1 = "<p>Text.</p>"; //使用HTML方式进行创建
    var text2 = $("<p></p>").text("Text"); //使用jquery创建
    var text3 = document.createElement("p");
    text3.innerHTML = "Text"; //使用DOM创建
    $("body").append(text1,text2,text3);
}