javascript中hover怎么用
这篇文章主要介绍javascript中hover怎么用,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
在JavaScript中,hover()方法用于规定当鼠标指针悬停在被选元素上时要运行的函数,既可以设置指针在元素上时的函数,也可以设置指针离开时的函数,语法为“$(元素).hover(inFunction,outFunction)”。
本教程操作环境:windows10系统、javascript1.8.5版、Dell G3电脑。
hover() 方法规定当鼠标指针悬停在被选元素上时要运行的两个函数。
方法触发 mouseenter 和 mouseleave 事件。
注意: 如果只指定一个函数,则 mouseenter 和 mouseleave 都执行它。
语法为:
$(selector).hover(inFunction,outFunction)
调用:
$(selector).hover(handlerIn,handlerOut)
等同以下方式:
$(selector).mouseenter(handlerIn).mouseleave(handlerOut);
注意:如果只规定了一个函数,则它将会在 mouseenter 和 mouseleave 事件上运行。
调用:
$(selector).hover(handlerInOut)
等同于:
$(selector).on("mouseentermouseleave",handlerInOut);
示例如下:
<html><head><metacharset="utf-8"><title>123</title><scriptsrc="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script><script>$(document).ready(function(){$("p").hover(function(){$("p").css("background-color","yellow");},function(){$("p").css("background-color","pink");});});</script></head><body><p>鼠标移动到该段落。</p></body></html>
输出结果:
以上是“javascript中hover怎么用”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!