在1.3的中文API文档中看到这样一段:
[attribute!=value]
匹配所有含有指定的属性,但属性不等于特定值的元素。
Code
<html>
<head>
<script src="jquery-1.3.2.pack.js"></script>
<script>
$(document).ready(function(){
$("div[id!=hey]").css("background-color","yellow");
});
</script>
</head>
<body>
<div>no id</div>
<div id="hey">with id</div>
<div id="there">has an id</div>
<div>nope</div>
</body>
</html>
那肯定是API翻译错了
$(document).ready(function(){ $("body>div>div[id!=hey]").css("background-color","yellow"); });
- -!
发现一个错误,上面那段是我回复的.居然没登录也能回复,用户名呢?