我有一个包含多个文本输入的表单,我想获取每个文本输入的名称和值,然后显示它。
例如,我的代码看起来像这样:
<form id="myForm">
<input type="text" name="input1" value="value1" />
<input type="text" name="input2" value="value2" />
<input type="text" name="input3" value="value3" />
<input type="button" name="showResults" />
</form>
然后显示如下:
input1 = value1, input2 = value2, input3 = value3
感谢您的时间。
答案 0 :(得分:0)
像这样:http://jsfiddle.net/Etm8K/
API:
希望休息符合你的需要。 :)
<强>代码强>
$("#myForm").find(":input[type=text]").each(function () {
// The selector will match buttons; if you want to filter
// them out, check `this.tagName` and `this.type`; see
// below
$('#display').html($('#display').html() + this.name + '=' +
$(this).val() + ',');
});