19
我需要找到單選按鈕,文本和選擇的輸入類型。它很容易找到的東西輸入型與自$(this).attr("type")
<input type="x">
將返回x
jQuery查找輸入類型(但也用於選擇)
我的問題是,我需要支持<select>
元素,不要有type屬性。最終目標是返回收音機,文字或選擇。
我認爲做這樣的事情,但我很好奇,如果有一個更好的辦法:
if ($(this).tagName == "input") {
var result = $(this).attr("type"); //returns radio or text (the attr type)
} else {
var result = $(this).tagName; //returns select (the element type)
}
謝謝大家!
10分'$( 「:輸入」)' – 2016-09-11 16:45:49