解决jQuery(e).addclass(‘xxx‘)始终不生效的问题 - $(...).addclass is not a function
Posted Rudon滨海渔村
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决jQuery(e).addclass(‘xxx‘)始终不生效的问题 - $(...).addclass is not a function相关的知识,希望对你有一定的参考价值。
错误
解决步骤
- 先找标准的(接近)官方手册 (百度jquery addclass)
jQuery 属性操作 - addClass() 方法https://www.w3school.com.cn/jquery/attributes_addclass.asp - 找到官方例子,一个字一个字的核对:
$("button").click(function() $("p:first").addClass("intro"); );
- 发现问题,
不是 addclass
而是 addClass -- 大写的C - 所以,问题的关键是:
需要大写C, $("p:first").addClass("intro");
咬文嚼字,还是有好处的
以上是关于解决jQuery(e).addclass(‘xxx‘)始终不生效的问题 - $(...).addclass is not a function的主要内容,如果未能解决你的问题,请参考以下文章