检查 <p> 元素是否包含 "intro" 类:
$("button").click(function(){ alert($("p").hasClass("intro")); });
hasClass() 方法检查被选元素是否包含指定的类名称。
如果被选元素包含指定的类,该方法返回 "true"。
$(selector).hasClass(classname)