首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

旋钮变色

2012-08-22 
按钮变色style.btFeed{background-image: url(../images/default_btn.jpg)width: 58pxheight: 23px

按钮变色

<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>
?

热点排行