我在html中有文本框。如何使用id。
获取文本框的值我的示例单行代码如下所示。
function testing(){
// tell the code for text box value id is "testing_id
console.log(value of textbox)
}
//calling function
testing();
答案 0 :(得分:1)
您需要检索输入元素,然后检查值。
document.getElementById('...').value; // This will return the value of the textbox (... should equal the ID of the textbox
答案 1 :(得分:0)
使用document.getElementById
function testing(){
console.log(document.getElementById('testing_id').value)
}
testing();