如何用jq获取一个div内部所有input[type='text']的值

<div id="Div1">
<input id="13" readonly="readonly" type="text" value="13"><input id="13" type="button" value="删除" mes="13" onclick="del(this)">
<input id="12" readonly="readonly" type="text" value="12"><input id="12" type="button" value="删除" mes="12" onclick="del(this)">
<input id="11" readonly="readonly" type="text" value="11"><input id="11" type="button" value="删除" mes="11" onclick="del(this)">
<input id="10" readonly="readonly" type="text" value="10"><input id="10" type="button" value="删除" mes="10" onclick="del(this)">
<input id="5" readonly="readonly" type="text" value="5"><input id="5" type="button" value="删除" mes="5" onclick="del(this)">
<input id="4" readonly="readonly" type="text" value="4"><input id="4" type="button" value="删除" mes="4" onclick="del(this)">
<input id="3" readonly="readonly" type="text" value="3"><input id="3" type="button" value="删除" mes="3" onclick="del(this)">
<input id="2" readonly="readonly" type="text" value="2"><input id="2" type="button" value="删除" mes="2" onclick="del(this)">
<input id="1" readonly="readonly" type="text" value="1"><input id="1" type="button" value="删除" mes="1" onclick="del(this)">
</div>

第1个回答  2015-03-20
$(function(){

var $arr= $("#Div1 :input[type='text']");

$arr.each(function(i,ele){
var $ele=$(ele);
alert($(ele).val())
});

});
//楼主又有不明白的地方可以联系我哦 569305586@qq.com
第2个回答  2015-03-20
$(document).ready(function(e) {
$("#Div1 input[type=text]").each(function() {
var v = $(this).val();
});
});
相似回答