[ jquery 选择器 :not(selector) ] 此方法排除与selector选择器选取的页面元素
Posted 窗棂博客记录
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ jquery 选择器 :not(selector) ] 此方法排除与selector选择器选取的页面元素相关的知识,希望对你有一定的参考价值。
此方法排除与selector选择器选取的页面元素:
实例:
<!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-3.0.0.js‘></script> -->
<script type=‘text/javascript‘ src=‘./js/jquery-1.12.1.min.js‘></script>
<style type=‘text/css‘>
li{width:100%;height:20px;margin:10px 0;background:GreenYellow;font:400 13px/20px ‘Courier New‘;color:#000;text-align:center;}
</style>
<script type=‘text/javascript‘>
$(function(){
$(‘#list li:not(".active")‘).html(‘":not(selector) : "伪类选择器演示‘);
});
</script>
</head>
<body>
<ul id=‘list‘>
<li></li>
<li class=‘active‘></li>
<li></li>
<li></li>
</ul>
</body>
</html>
以上是关于[ jquery 选择器 :not(selector) ] 此方法排除与selector选择器选取的页面元素的主要内容,如果未能解决你的问题,请参考以下文章
带有 :not 选择器的 CSS 在作为 jquery 选择器放置时工作,而不是纯 CSS [重复]
为啥我的 jQuery :not() 选择器在 CSS 中不起作用?
为啥我的 jQuery :not() 选择器在 CSS 中不起作用?
在 IE 8 中加速 ":not" jQuery CSS 选择器?