解析页面表单元素 parseForm: function () { var data = {}; $(this).find('input').each(function () { switch ($(this).attr('type')) { case 'radio': case 'checkbox': if ($(this).prop('checked')) { data[$(this).attr('name')] = $(this).val(); } break; default: data…
原文:[ASP.NET Web API教程]5.2 发送HTML表单数据:URL编码的表单数据 注:本文是[ASP.NET Web API系列教程]的一部分,如果您是第一次看本系列教程,请先看前面的内容. 5.2 Sending HTML Form Data 5.2 发送HTML表单数据 本文引自:http://www.asp.net/web-api/overview/working-with-http/sending-html-form-data,-part-1 By Mike Wasson|…