以下是问题JSFfledle:http://jsfiddle.net/LRTH3/36/
$( div.boxes ).mousedown(function (event) {
// Error on this line
var inner_box = $(".box").is(":hover");
if ( inner_box == true ) {
alert("blue,gree,pink was clicked");
}
else alert("You mousedowned on the red box");
});
console: Uncaught Error: Syntax error, unrecognized expression: hover
如果只显示 < strong > one strong > ".box" 层, 有效 。 这是臭虫吗? 我如何解决这个问题?