首页 > 扩展 > jQuery > 正文

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

2024-09-06 20:04:39
字体:
来源:转载
供稿:网友

jquery动态创建页面元素,mark一下,以备以后查询时使用。以创建div和input为例。
动态创建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"); }) 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表