jquery鼠标移动上去改变背景色,为何没反应?在线等
发布网友
发布时间:2022-05-17 08:03
我来回答
共4个回答
热心网友
时间:2022-05-17 09:32
background-color和background是不一样的
将$(this).css("background", "yellow");和$(this).css("background", c);中的backgroud改为background-color
ps.html中td是table标签的列,咋用在这里的呢,<div></div>也是对称标签,规范一点总是好的吧
热心网友
时间:2022-05-17 10:50
哥们,是</div> 不是<div/>追问写错了,源码中没错,不是这个导致的。
热心网友
时间:2022-05-17 12:25
$(document).ready(function(){
var c;
$('#btn-default').hover(function (){
$(this).css("background", "yellow");
},
function () {
$(this).css("background", "transparent");
});
});
用hover试试?
热心网友
时间:2022-05-17 14:16
单独测试,有变化。请检查,是否和其他代码有冲突?追问嗯,正在查找。