在一个url字符串中传递参数串
这个问题在这里已经有了答案:
我想你想编码args字符串,以便它可以表示为数据,而不是查询字符串的字面延续。
var strArgsString = encodeURIComponent("?Category=Customer&Year=2014");
var intModuleNo = "2";
var strOrigDashName = "Invoices"
有两个额外的编码选项。 encodeURI并转义。 请参阅最佳实践:escape,或encodeURI / encodeURIComponent以获取更多信息。
链接地址: http://www.djcxy.com/p/26535.html