首頁 > web前端 > js教程 > 如何在 JavaScript 中取得輸入文字欄位的值?

如何在 JavaScript 中取得輸入文字欄位的值?

Linda Hamilton
發布: 2024-12-21 21:33:22
原創
200 人瀏覽過

How Do I Get the Value of an Input Text Field in JavaScript?

在JavaScript 中取得輸入文字欄位值

為了回應您的查詢,有多種方法可用於直接擷取輸入文字欄位的值,而無需使用表單。

方法一:使用getElementById()

document.getElementById('textbox_id').value 直接擷取所需文字輸入欄位的值。

document.getElementById("searchTxt").value; // Get the value of the searchTxt text field
登入後複製

方法2:使用getElementsByClassName()

document.getElementsByClassName('class_name')[whole_number].value 傳回一個可即時用於根據其類別選擇所需的文字欄位。

document.getElementsByClassName("searchField")[0].value; // Get the value of the first text field with class "searchField"
登入後複製

方法三:使用getElementsByTagName()

document.getElementsByTagName('input')[whole_number].value 也將返回一個實時您根據其標籤名稱選擇所需的文字欄位。

document.getElementsByTagName("input")[0].value; // Get the value of the first text input field
登入後複製

方法四:使用getElementsByName()

document.getElementsByName('name')[whole_number].value 傳回一個即時。 name 屬性選擇所需的文字欄位。

document.getElementsByName("searchTxt")[0].value; // Get the value of the first text field with name "searchTxt"
登入後複製

方法五:使用querySelector()

document.querySelector('selector').value 使用 CSS 選擇器來選擇所需的文字欄位。

document.querySelector('#searchTxt').value; // Get the value of the text field with id "searchTxt"
登入後複製

方法6:使用querySelectorAll()

document.querySelectorAll('selector')[whole_number].value 也使用CSS 選擇器來選擇所需的文字字段,但傳回靜態NodeList。

document.querySelectorAll('.searchField')[0].value; // Get the value of the first text field with class "searchField"
登入後複製

下表提供了這些方法的瀏覽器相容性資訊:

Browser Method 1 Method 2 Method 3 Method 4 Method 5/6
IE6 Buggy No Yes Buggy No
IE7 Buggy No Yes Buggy No
IE8 Yes No Yes Buggy Yes
IE9 Yes Yes Yes Buggy Yes
IE10 Yes Yes Yes Yes Yes
FF3.0 Yes Yes Yes Yes No
FF3.5/FF3.6 Yes Yes Yes Yes Yes
FF4b1 Yes Yes Yes Yes Yes
GC4/GC5 Yes Yes Yes Yes Yes and Yes
Safari4/Safari5 Yes Yes Yes Yes Yes
Opera10.10/
Opera10.53/ Yes Yes Yes Buggy Yes
Opera10.60
Opera 12 Yes Yes Yes Yes Yes

以上是如何在 JavaScript 中取得輸入文字欄位的值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板