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() 方法的主要内容,如果未能解决你的问题,请参考以下文章