JQuery implements the method of converting objects into url parameters, while jquery converts objects into url parameters.
This example describes how to convert jQuery to url parameters. We will share this with you for your reference. The details are as follows:
Ajax-based object parameters
Copy codeThe Code is as follows: var conditions = {status: 0, title: '', specialId:'', creatorId: '', authorId:'', startViewCount: 0, endViewCount: 0, startFactTime: '', endFactTime :''};
Convert jQuery object to url parameter
// Export all query results function exportExcel (btnFlag) {// query Condition Verification searchCheck (btnFlag); var str = parseParam (conditions ); var url = "/wamei/articleStatisticsController/export/excel.htm? "+ Str; window. location. href = url;} // convert the object to the url parameter var parseParam = function (param, key) {var paramStr = ""; if (param instanceof String | param instanceof Number | param instanceof Boolean) {paramStr + = "&" + key + "=" + encodeURIComponent (param);} else {$. each (param, function (I) {var k = key = null? I: key + (param instanceof Array? "[" + I + "]": ". "+ I); paramStr + = '&' + parseParam (this, k) ;});} return paramStr. substr (1 );};