<!DOCTYPE html>
<head>
<style>
p { color:red; text-align:center;cursor:pointer;
font-weight:bolder; width:300px; }
</style> <script src="http://code.jquery.com/jquery...
</head>
<body>
<p>Klicken Sie hier</p>
<p>zum Durchlaufen</p>
<p>diese PS.</p>
<script>
$(document.body).click(function () {
$( "p" ).each(function (i) {
if ( this.style.color != "blue" ) {
this.style.color = "blue";
} else {
this.style.color = "";
}
});
});
</script></body>
</html>
https://developer.mozilla.org...
this.style.color 是空字符串,满足下面的条件
所以点击还是会变色
在没有使用DOM对象进行
style
设置的时候,this.style.color
的值应该是空字符串:""
,所以this.style.color != "blue"
这个表达式的值应该是true
。