- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script>
- <link rel="stylesheet" href="css/style.css" />
- <title></title>
- <script>
- $(function(){
- $(msg).on({
- mouseover : function(){
- $(this).wrap("<h1>") ;
- } ,
- mouseout : function(){
- $(this).unwrap() ;
- }
- }) ;
- }) ;
- </script>
- </head>
- <body>
- <p id="msg">Hello World !!!</p>
- </body>
- </html>
hover() 方法規(guī)定當(dāng)鼠標(biāo)指針懸停在被選元素上時(shí)要運(yùn)行的兩個(gè)函數(shù)。
jQuery 1.7 版本前該方法觸發(fā)
mouseenter 和
mouseleave 事件。
jQuery 1.8 版本后該方法觸發(fā)
mouseover 和
mouseout 事件。
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <script type="text/javascript" src="js/jquery-3.1.1.min.js" ></script>
- <link rel="stylesheet" href="css/style.css" />
- <title></title>
- <script>
- $(function(){
- $(msg).hover(
- function(){
- $(this).wrap("<h1>") ;
- } ,
- function(){
- $(this).unwrap() ;
- }
- ) ;
- }) ;
- </script>
- </head>
- <body>
- <p id="msg">Hello World !!!</p>
- </body>
- </html>
|