我有 jquery carousel,我正在尝试为所有 div 实现悬停,但它只适用于某些 div 你能告诉我为什么它不适用于其他 div...当你点击绿色和红色按钮时,你可以看到轮播运动。 ...
在下面提供我的 js 代码
$(".specialHover").hover(
function () {
// $("<div class='cta'>add image</div>").click(function() {
$("<div class='cta'>add image</div>").click(function() {
$(this).parent().unbind("hover").children("img").attr("src", "http://www.onlinegrocerystore.co.uk/images/goodfood.jpg");
$(this).remove();
}).appendTo(this);
},
function () {
$(this).find("div:last").remove();
}
);