首页 > 代码库 > jQuery基础 DOM操作

jQuery基础 DOM操作

 

技术分享

技术分享

 设置属性:只有一个参数为获取

 $("#btn1").click(function () {
        $(this).attr("disabled","disabled");
    });

移除属性:

$("#btn1").click(function () {
        $(this).removeAttr("value");
    });

设置样式:只有一个参数为选取

$("#btn1").click(function () {
        $(this).css("background-color","red");
    });

表单元素赋值:val("");取值:val();
非表单元素:innerhtml变为html;innertext变为text

jQuery基础 DOM操作