JQuery 中 创建节点,修改节点属性

var content = $("<div></div>");

content.text("新建节点的内容");
//content.html("<b>hello</b>");

content.addClass("one");
content.css("background-color","red");
$("#content").append(content);
posted @ 2016-04-17 11:50  窗外是绿色的  阅读(535)  评论(0编辑  收藏  举报