我想要这样做:
$(".game-cover").mouseenter(function() {
$($(this)+" :input").css("background-color", "#A2D205");
});
但我不知道如何将此与:输入结合起来。有人能帮助我吗?
答案 0 :(得分:2)
您可以使用jQuery.find
查找也接受选择器的后代,在您的情况下:input
$(".game-cover").mouseenter(function() {
$(this).find(":input").css("background-color", "#A2D205");
});