問題に対するJSFidleは次のとおりです。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
「.box」レイヤーが1つだけ表示されている場合に機能します。これはバグですか?これをどのように修正しますか?