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