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


jQuery :text用法及代碼示例


:text Selector用於選擇具有文本字段即(type == text)的輸入元素。

用法:

$(":text") 

例:



<!DOCTYPE html> 
<html> 
  
<head> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
  </script> 
     
  <script> 
    $(document).ready(function() { 
        $(":text").css("background-color", 
                      "green"); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;"> 
          GeeksForGeeks 
      </h1> 
        <h2>jQuery:text Selector 
      </h2> 
        
        <form action=""> 
            Name:
            <input type="text" 
                   name="user"> 
            <br> Password:
            <input type="password" 
                   name="password"> 
            <br> 
            <br> 
            <input type="reset"
                   value="Reset"> 
            <input type="submit" 
                   value="Submit"> 
            <br> 
        </form> 
  </center> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了jQuery:text Selector支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari



相關用法


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