jQuery Form表单取值的方法
之前js取form表单的值都是一个一个的取,数量一多之后容易出错而且烦透了。感谢那些愿意分享的人。
页面定义form,并给form指定id值,里面的元素只要是需要键值对应的都赋予name属性,并且name值等于后台能识别的参数名。
<form method='post' id="punishformID"> <input hidden="hidden" name="Stu" [email protected]> <input hidden="hidden" name="StuRuleIDs" [email protected]> </form> </div> <div style="margin-top:20px; padding-left:300px;"> <button type="button" class="w-button w-button-submit" onclick="isagree();">确定</button> </button> </div>
function isagree() { var obj = $('#punishformID').serialize(); $.ajax({ type: "POST", url: "/Discipline/IsAgree", data: obj,// 要提交的表单 success: function (msg) { easyuiAlert(msg); }, error: function (error) { easyuiAlert(error); } }); }
$('#punishformID').serialize();
就是取上面form的值,得到的是object,可以直接传递给后台。
相关推荐
wcqwcq 2020-07-04
TONIYH 2020-06-11
yhginny 2020-04-20
nicepainkiller 2020-05-12
Lius 2020-05-05
longshengguoji 2020-02-13
ajaxtony 2020-02-03
HSdiana 2019-12-15
taiyanghua 2019-12-02
sunnyishere 2014-01-22
86580599 2019-09-23
shumark 2014-05-29
爱好HtmlCssJs 2019-10-28
shumark 2014-07-07
AngelicaA 2015-03-14
81751330 2015-03-10
kentrl 2016-05-03
Qc 2020-07-19
swiftwwj 2020-07-05