我正在快速做一个 jsFiddle 来了解更多关于 jQuery API 的信息,但一个小提琴没有按我预期的方式工作。
jsfiddle:http: //jsfiddle.net/7j5Fc/
HTML:
<div></div>
CSS:
div {
background:red;
height:100px;
width:150px;
}
JS:
$('div').click(
function(){
$(this).toggle(function(){
$(this).style.background="blue";
}
//function(){
//this.style.background = "orange";
//}
);
}
);
奇怪的是,当我单击它时,div 消失了,如果我取消注释注释行,草图根本不起作用。任何建议或信息表示赞赏。