Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查特定元素是否sytle / class已应用于给定元素。
sytle / class
什么是正确的 jQuery 函数来检查这个?
只需使用 hasClass();
$('#mydiv').hasClass('testClass');
IE...
if($('#mydiv').hasClass('testClass')){ //YOUR CODE HERE if TRUE }
使用 .hasClass()
语法是
$(selector).hasClass(classname)