gpt4 book ai didi

javascript - 通过传递 ID 获取输入类型

转载 作者:行者123 更新时间:2023-11-28 12:17:50 24 4
gpt4 key购买 nike

所以我尝试传递一个输入 ID 并获取其相应的类型。

例如。

<input id = "1" type = "date"/>
<input id = "2" type = "text"/>

因此,传递“1”将返回日期,传递“2”将返回文本

我看过一些例子,但没有一个适合我的情况:

How to use jquery selector having element type and ID

finding the type of an element using jQuery

到目前为止我所拥有的:

$("#my_select").on('click',function(){
var fieldID = document.querySelector('.selected').id
console.log("id is " + fieldID);
var elementType = $(this).prev().prop('.selected');
console.log("element type " + elementType)
});

最佳答案

var type = $("#id").attr("type");

应该这样做。

关于javascript - 通过传递 ID 获取输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45149075/

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