位置: IT常识 - 正文
推荐整理分享怎么移除css的hover事件(css去掉项目符号),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:css怎么取消overflow,css怎么取消overflow,移除css样式,移除css样式,css去掉项目符号,css去掉属性,css去掉属性,怎么删除css规则,内容如对您有帮助,希望把文章链接给更多的朋友!
移除css hover事件的方法:1、;通过“$("a").hover(function(){ alert('mouseover'); }, function(){ alert('mouseout'); })”方法绑定hover事件;2、通过“$('a').off('mouseenter').unbind('mouseleave');”方法取消绑定的hover事件即可。
jquery中取消和绑定hover事件的正确方式
在网页设计中,我们经常使用jquery去响应鼠标的hover事件,和mouseover和mouseout事件有相同的效果,但是这其中其中如何使用on去绑定hover方法呢?如何用off取消绑定的事件呢?
一、如何绑定hover事件
先看以下代码,假设我们给a标签绑定一个click和hover事件:
$(document).ready(function(){ $('a').on({ hover: function(e) { //Hover event handleralert("hover"); },click: function(e) { // Click event handleralert("click"); } });});当点击a标签的时候,奇怪的事情发生了,其中绑定的hover事件完全没有反应,绑定的click事件却可以正常响应。
但是如果换一种写法,比如:
$("a").hover(function(){ alert('mouseover'); }, function(){alert('mouseout'); })应该使用 mouseenter 和 mouseleave 这两个事件来代替,(这也是 .hover() 函数中使用的事件)
所以完全可以直接像这样来引用:
$(document).ready(function(){ $('a').on({ mouseenter: function(e) {//Hover event handleralert("mouseover"); }, mouseleave: function(e) {//Hover event handleralert("mouseout"); }, click: function(e) {// Clickevent handleralert("click"); } });});因为.hover()是jQuery自己定义的事件,是为了方便用户绑定调用mouseenter和mouseleave事件而已,它并非一个真正的事件,所以当然不能当做.on()中的事件参数来调用。
二、如何取消hover事件
大家都知道,可以使用off函数去取消绑定的事件,但是只能取消通过bind绑定的事件,jquery中的hover事件是比较特殊的,如果通过这种方式去绑定的事件,则无法取消。
$("a").hover(function(){ alert('mouseover'); }, function(){alert('mouseout'); })取消绑定的hover事件的正确方式:
$('a').off('mouseenter').unbind('mouseleave');上一篇:H5页面跳转小程序的三种方式(h5页面跳转小程序不显示按钮)
下一篇:vue中跳转到详情页的两种方法(vue带参数跳转到详情页面)
友情链接: 武汉网站建设