发布网友 发布时间:2022-04-24 05:36
共2个回答
热心网友 时间:2022-04-22 23:19
$('#nw').hover(
function(){$(this).css('background','red')}, //鼠标移入
function(){$(this).css('background','black')} //鼠标移出
);
热心网友 时间:2022-04-23 00:37
$("id").moveover($("id").css("background","red"));//red用#什么东西的替换
$("id").moveout($("id").css("background","black"));