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


JQuery :text用法及代碼示例


用法
text selector

說明:選擇文本類型的所有輸入元素。

  • 添加的版本:1.0jQuery( ":text" )

$( ":text" ) 允許我們選擇所有 <input type="text"> 元素。與其他 pseudo-class 選擇器(以 ":" 開頭的選擇器)一樣,建議在其前麵加上標簽名稱或其他選擇器;否則,隱含通用選擇器 ("*")。換句話說,裸露的 $( ":text" ) 等同於 $( "*:text" ) ,所以應該使用 $( "input:text" ) 代替。

注意:從 jQuery 1.5.2 開始,:text選擇input沒有指定的元素type屬性(在這種情況下type="text"是隱含的)。

$( ":text" )$( "[type=text]" ) 之間的這種行為差異如下所示:

$( "<input>" ).is( "[type=text]" ); // false
$( "<input>" ).is( ":text" ); // true

其他注意事項:

  • 因為 :text 是 jQuery 擴展而不是 CSS 規範的一部分,所以使用 :text 的查詢無法利用本機 DOM querySelectorAll() 方法提供的性能提升。為了在現代瀏覽器中獲得更好的性能,請改用[type="text"]

例子:

查找所有文本輸入。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>text demo</title>
  <style>
  textarea {
    height: 25px;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<form>
  <input type="button" value="Input Button">
  <input type="checkbox">
  <input type="file">
  <input type="hidden">
  <input type="image">
  <input type="password">
  <input type="radio">
  <input type="reset">
  <input type="submit">
  <input type="text">
  <select>
    <option>Option</option>
  </select>
  <textarea></textarea>
  <button>Button</button>
</form>
<div></div>
 
<script>
var input = $( "form input:text" ).css({
  background: "yellow",
  border: "3px red solid"
});
 
$( "div" )
  .text( "For this type jQuery found " + input.length + "." )
  .css( "color", "red" );
 
// Prevent form submission
$( "form" ).submit(function( event ) {
  event.preventDefault();
});
</script>
 
</body>
</html>

演示:

相關用法


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