gpt4 book ai didi

javascript - 未捕获错误 : Syntax error, 无法识别的表达式:悬停

转载 作者:行者123 更新时间:2023-11-30 05:57:47 26 4
gpt4 key购买 nike

这是问题的 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”层,则有效。这是一个错误吗?我将如何解决这个问题?

最佳答案

$('div.boxes').mousedown(function (event) {

// Error on this line
var $target = $(event.target);
if ( $target.is(".box")) {

alert("blue,gree,pink was clicked");
}

else alert("You mousedowned on the red box");


});​

我从 jQuery API doc 中提取了它

关于javascript - 未捕获错误 : Syntax error, 无法识别的表达式:悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10704183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com