本文概述
- jQuery mouseenter()事件的参数
- jQuery mouseenter()事件的示例
- 输入此标题。
- jQuery mouseenter()事件示例2
当你在所选元素上输入鼠标光标时, 它将触发mouseenter事件, 并且一旦发生mouseenter事件, 它就会执行mouseenter()方法来附加事件处理函数以运行。
此事件通常与mouseleave()事件一起使用。
句法:
$(selector).mouseenter()
它触发选定元素的mouseenter事件。
$(selector).mouseenter(function)
它将一个函数添加到mouseenter事件。
jQuery mouseenter()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。触发mouseenter事件时, 它将自行执行。 |
<
!DOCTYPE html>
<
html>
<
head>
<
script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js">
<
/script>
<
script>
$(document).ready(function(){
$("#h1").mouseenter(function(){
$( "div" ).text( "Mouse entered on heading" ).show().fadeOut( 2000 );
});
});
<
/script>
<
/head>
<
body>
<
h1 id="h1">
Enter this heading.<
/h1>
<
div>
<
/div>
<
/body>
<
/html>
立即测试
输出:
输入此标题。jQuery mouseenter()事件示例2让我们看一下jQuery mouseenter()事件的另一个示例。
<
!DOCTYPE html>
<
html>
<
head>
<
script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js">
<
/script>
<
script>
$(document).ready(function(){
$("p").mouseenter(function(){
$("p").css("background-color", "lightgreen");
});
$("p").mouseleave(function(){
$("p").css("background-color", "yellow");
});
});
<
/script>
<
/head>
<
body>
<
p>
Move your mouse cursor over this statement.<
/p>
<
/body>
<
/html>
立即测试
输出:
【jQuery mouseenter()】将鼠标光标移到该语句上。
推荐阅读
- jQuery mouseleave()
- jQuery mousedown()
- jQuery load()
- jQuery keyup()
- jQuery keypress()
- jQuery keydown()
- jQuery insertAfter()
- jQuery innerWidth()
- jQuery html()