jQuery prop() 方法

Posted 雪洗中关村

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery prop() 方法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
    $("#ha").click(function(){
        $(this).removeClass("ccc");
        $(this).addClass("cc2");
        $(this).prop("disabled", true);
         
    });
});
</script>
    <style>
        .ccc{ background: #d00000;}
        .cc2{ background: #ed9d10;}    
    </style>        
</head>
<body>

<button class="ccc" id="ha">添加和删除属性</button>
<br><br>
<div></div>

</body>
</html>

 

以上是关于jQuery prop() 方法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 中 attr() 和 prop() 方法的区别

jQuery中attr和prop方法的区别

JS中attr和prop属性的区别

JQuery之Attr()与Prop()方法

jquery中attr()与prop()区别

Jquery学习笔记--jquery1.6中的.prop()和.attr()异同