gpt4 book ai didi

JavaScript : check if <input> is input-field

转载 作者:行者123 更新时间:2023-12-01 01:43:39 25 4
gpt4 key购买 nike

HTML5 带来了很多新类型

<input />

如何检测输入字段是否为“文本字段”(日期、时间、电子邮件、文本等)

我不想写input[type='text'],input[type='xxx'] ...

最佳答案

您可以使用getAttribute获取您想要的任何属性(包括 type)

var input = document.getElementById('myinput');
var inputTYpe = input.getAttribute('type');
var isText = inputTYpe === 'text' || inputTYpe === '';

console.log('type is ', input.getAttribute('type'), ' is text = ', isText)
<input type="hey" id="myinput" />

关于JavaScript : check if &lt;input&gt; is input-field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52150569/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com