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


JQuery Misc get()用法及代碼示例


jQuery中的get()方法用於獲取選擇器指定的DOM元素。

用法

$(selector).get(index)

參數:該方法接受可選的單個參數索引。它用於通過索引號指定要獲取哪些匹配元素。


範例1:本示例使用get()方法獲取選擇器指定的元素。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        jQuery Misc get() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
</head>  
  
<body style="text-align:center;"> 
            
    <h1 style = "color:green;" >   
        GeeksforGeeks 
    </h1>   
      
    <h2>jQuery Misc get() Method</h2> 
      
    <button>Click</button> 
  
    <div></div> 
      
    <script> 
        $(document).ready(function() { 
            $("button").click(function() { 
                var x = $("h1").get(0); 
                $("div").text(x.nodeName + ":" + x.innerHTML); 
            }); 
        }); 
    </script>  
</body> 
  
</html>  

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:本示例使用get()方法獲取選擇器指定的元素。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        jQuery Misc get() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
</head>  
  
<body style="text-align:center;"> 
  
    <h1 style = "color:green;" >   
        GeeksForGeeks 
    </h1>   
      
    <h2>jQuery Misc get() Method</h2> 
  
    <button>Click</button> 
      
    <!-- Script to use get() method -->
    <script> 
        $(document).ready(function(){ 
            $("button").click(function(){ 
                var x = $("h1").get(0); 
                alert(x.nodeName + ":" + x.innerHTML); 
            }); 
        }); 
    </script>  
</body> 
  
</html>  

輸出:
之前單擊按鈕:

單擊按鈕後:



相關用法


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