js获取input的值
时间: 2023-09-19 18:11:47 浏览: 75
js获取input标签的输入值实现代码
要获取 input 元素的值,可以使用 JavaScript 的 DOM API,例如:
```javascript
// 通过 id 获取 input 元素
const inputElem = document.getElementById('inputId');
// 获取 input 元素的值
const inputValue = inputElem.value;
console.log(inputValue);
```
其中,`inputId` 是 input 元素的 id 属性值,`value` 是 input 元素的值属性。可以根据实际情况替换为对应的值。
阅读全文