jQuery基础 DOM操作

Posted 游称

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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操作的主要内容,如果未能解决你的问题,请参考以下文章

jquery 对象的 heightinnerHeightouterHeight 的区别以及DOM 元素的 clientHeightoffsetHeightscrollHeightoffset(代码片段

Jquery基础之DOM操作

Jquery基础之DOM操作

Jquery基础之DOM操作

jQuery 《基础整合》 jQuery插件jQueryAPI查询网站

Jquery基础之DOM操作