我正在尝试在我的表单上获取表单字段的类型,但它似乎不适用于组合框
输入有效,但不是选择,并且清楚地显示为“select-one”
<select id="test">
<option value=1>1</option>
</select>
<input type="text" id="test2">
<hr>type of select:
<div id="a"></div>
<hr>type of input
<div id="b"></div>
var f = $('#test').attr('type');
$('#a').html(f);
var f = $('#test2').attr('type');
$('#b').html(f);
我错过了什么吗?或者这是一个错误?
见:http: //jsfiddle.net/TZjE5/1/