当前位置:主页 > 网页前端 > jquery >

基于Jquery的动态创建DOM元素的代码

时间:2021-10-26 09:12:34 | 栏目:jquery | 点击:

动态创建div:
复制代码 代码如下:

$(function(){
$("<div>",{
id: 'test',
text: 'this is a test',
"class": "test",
click: function(){
$(this).toggleClass('test');
}
}).appendTo("body");
})

动态创建input:
复制代码 代码如下:

$(function(){
$("<input>", {
type: 'text',
val: 'test',
focusin: function() {
$(this).addClass('active');
},
focusout: function() {
$(this).removeClass('active');
}
}).appendTo("body");
})

您可能感兴趣的文章:

相关文章