我已标记使用此规则切换悬停 CSS 样式。当面板中有一个复选框时,我想删除背景图像样式。这可能吗?尽管失败了,但我尝试了以下方法。
CSS:
.StaffMode .day ul li.standard a:hover table {
background:url("test.png");
}
JS:
$("li.test table li").hover(
function () {
if($(this).children(':checked')) {
alert('need to remove the background image style'); // shows as expected
$(this).children('a').removeClass('hover'); // this doesnt work?
}
}
);