作用:使用自定义一个按钮
代码:
<div class = 'btn'>按钮</div> $(".btn").mousedown(function () {
$(this).css({ "backgroundColor": "#aaa" });
}).mouseup(function () {
$(this).css({ "backgroundColor": "#ccc" });
});
});
2023-01-08 20:50:20
作用:使用自定义一个按钮
代码:
<div class = 'btn'>按钮</div> $(".btn").mousedown(function () {
$(this).css({ "backgroundColor": "#aaa" });
}).mouseup(function () {
$(this).css({ "backgroundColor": "#ccc" });
});
});