读书人

旋钮变色

发布时间: 2012-08-22 09:50:35 作者: rapoo

按钮变色

<style>
.btFeed{background-image: url("../images/default_btn.jpg");width: 58px;height: 23px;border-style:none;}.btFeedhover{background-image: url("../images/changed_btn.jpg");width: 58px;height: 23px;border-style:none;}
</style>
<div value="确 定 " id="change"/>            <input type="button" value="取 消" id="cancel"/></div><script>   $(document).ready(function(){//按钮背景切换$("#change").hover(function(){$(this).removeClass("btFeed").addClass("btFeedhover");},function(){$(this).removeClass("btFeedhover").addClass("btFeed");});$("#cancel").hover(function(){$(this).removeClass("btFeed").addClass("btFeedhover");},function(){$(this).removeClass("btFeedhover").addClass("btFeed");});   });</script>
?

读书人网 >Web前端

热点推荐