使用jquery刪除hover的方法:1.新建html項目,引入jquery;2.創建div標簽,設置hover鼠標懸浮樣式;3.添加button按鈕,綁定onclick點擊事件;4.通過標簽名獲取對象,使用unbind("mouseenter").unbind("mouseleave")方法刪除hover;
具體步驟如下:
1.首先,新建一個html項目,并在項目中引入jquery;
<script type="text/javascript" src="/static/jquery-2.1.4.min.js"></script>
2.引入jquery后,在項目中創建一個div標簽,并為標簽設置hover鼠標懸浮樣式;
<style>
div:hover{
background:red;
}
</style>
<div></div>
3.div標簽創建好后,添加一個button按鈕,并綁定onclick點擊事件,用于點擊刪除hover樣式;
<button omClick="set()"></button>
4.最后,按鈕添加好后,在點擊事件中通過標簽名獲取對象,在使用unbind("mouseenter").unbind("mouseleave")方法即可刪除hover;
function set(){
$(div).unbind("mouseenter").unbind("mouseleave");
}