比如我有一个也
<form id="form1">
<input id="text" type="text" value="XXX" />
<input id="text" type="file"/>
</form>
我在JQuery中
用$("#form1").children().each(function(){
//$(this)我如何判断这个input的类型,是属于text,还是属于file?
})
------解决方案--------------------------------------------------------
$(this).attr("type")
------解决方案--------------------------------------------------------
var t = $(this).attr("type");
type只是一种特殊的属性而已勒,这样子理解就好了