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


JQuery select()用法及代碼示例


select()方法是jQuery中的一種內置方法,當在文本區域或文本字段中選擇(或標記)某些字母或單詞時使用。

用法:

$(selector).select(function);

參數:該方法接受可選的單參數函數。函數參數將在選擇方法調用之後運行。


返回值:選擇某些內容時,此方法返回通知。

下麵的示例說明了jQuery中的select()方法:

例:

<!DOCTYPE html> 
<html> 
    <head> 
        <title>Select 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() { 
                $("input").select(function() { 
                    alert("Something was selected"); 
                }); 
            }); 
        </script> 
        <style> 
            div { 
                width: 250px; 
                height: 40px; 
                padding: 20px; 
                border: 2px solid green; 
            } 
        </style> 
    </head> 
    <body> 
        <div> 
            <!-- select any thing from inside this field -->
            <input type="text" value="GeeksforGeeks!"> 
        </div> 
    </body> 
</html>

輸出:
在選擇任何東西之前!

選擇一些字母或單詞後!




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