使用jQuery获取表单输入字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery获取表单输入字段相关的知识,希望对你有一定的参考价值。
$('#myForm').submit(function() { // get all the inputs into an array. var $inputs = $('#myForm input, #myForm textarea, #myForm select'); // not sure if you wanted this, but I thought I'd add it. // get an associative array of just the values. var values = {}; $inputs.each(function(i, el) { values[el.name] = $(el).val(); }); });
以上是关于使用jQuery获取表单输入字段的主要内容,如果未能解决你的问题,请参考以下文章