日期:2014-05-16 浏览次数:20466 次
$(document).ready(function(){
$("button").mouseover(function(){
$(this).css("background","url(http://img0.bdstatic.com/img/image/shouye/zxzzyyh.jpg) repeat-x");
});
$("button").mouseout(function(){
$(this).css("background","url(http://img0.bdstatic.com/img/image/shouye/sjwysji11.jpg) repeat-x");
});
});