當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JQuery mouseup()用法及代碼示例


jQuerymouseup()method 是一種內置方法,當鼠標左鍵在選定元素上釋放時該方法起作用。

用法:

$(selector).mouseup(parameter)

參數:該方法接受單個參數函數這是可選的。該參數用於指定調用 mouseup 事件時要運行的函數。

下麵的示例說明了 jQuery 中的 mouseup() 方法:
示例 1:該示例包含參數。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>The mouseup Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("button").mouseup(function () { 
                $("button").after( 
                    "<p style='color:green;'>Mouse button released.</p>"); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            width: 200px; 
            padding: 20px; 
            min-height: 100px; 
            border: 2px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <!-- click on this button and release -->
    <button>Click Here!</button> 
</body> 
  
</html>

輸出:

程序2:該示例不包含參數。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>The mouseup Method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
  
    <!-- jQuery code to show the working of this method -->
    <script> 
        $(document).ready(function () { 
            $("div").mouseover(function () { 
                $("p").mouseup().slideToggle(); 
            }); 
        }); 
    </script> 
    <style> 
        body { 
            width: 340px; 
            padding: 20px; 
            height: 100px; 
            border: 2px solid green; 
            font-weight: bold; 
            font-size: 20px; 
        } 
    </style> 
</head> 
  
<body> 
    <p>Welcome to GeeksforGeeks!</p> 
    <!-- move over this text to see the change -->
    <div>Mouse over this text to see the change.</div> 
</body> 
  
</html>

輸出:

相關文章:



相關用法


注:本文由純淨天空篩選整理自kundankumarjha大神的英文原創作品 jQuery mouseup() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。