根據選擇器、DOM元素或 jQuery 對象來檢測匹配元素集合,如果其中至少有一個元素符合這個給定的表達式就返回true。 如果沒有元素符合,或者表達式無效,都返回'false'。 '''註意:'''在jQuery 1.3中才對所有表達式提供了支持。在先前版本中,如果提供了複雜的表達式,比如層級選擇 ...
根據選擇器、DOM元素或 jQuery 對象來檢測匹配元素集合,如果其中至少有一個元素符合這個給定的表達式就返回true。
如果沒有元素符合,或者表達式無效,都返回'false'。 '''註意:'''在jQuery 1.3中才對所有表達式提供了支持。在先前版本中,如果提供了複雜的表達式,比如層級選擇器(比如 + , ~ 和 > ),始終會返回true
實例:
<!DOCTYPE html>
<html lang='zh-cn'>
<head>
<title>Insert you title</title>
<meta http-equiv='description' content='this is my page'>
<meta http-equiv='keywords' content='keyword1,keyword2,keyword3'>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>
<script type='text/javascript' src='./js/jquery-1.12.1.min.js'></script>
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
/*
此函數返回一個布爾值,現在我們知道可以返回布爾值的過濾器有兩個 hasClass(class) | is(expr | jqObj | ele | function);
*/
$('li').click(function(index){
var bool = $(this).is(function(index){
return $('strong',this).size() == 2;
});
if(bool){
$(this).css({'background':'red','color':'#000','cursor':'pointer',});
}else{
$(this).css({'background':'green','color':'#FFF','cursor':'pointer',});
}
});
});
</script>
</head>
<body>
<div id='demo'>
<ul>
<li><strong>list</strong> item 1 - one strong tag</li>
<li><strong>list</strong> item <strong>2</strong> - two <span>strong tags</span></li>
<li>list item 3</li>
</ul>
</div>
</body>
</html>