如何在jquery中通过url传递参数?
我的代码是这样的
getCIVectorsFormObj.action='getParentChildCIVectors';
这个动作,我想添加参数
的customerID
像
getParentChildCIVectors.java?customerID=customerID
请帮帮我.. 我很震惊
提前致谢
答案 0 :(得分:0)
您可以使用页面名称并像这样添加查询参数。 getParentChildCIVectors.jsp?customerID=customerID
答案 1 :(得分:0)
您必须将参数附加为常规字符串:
getCIVectorsFormObj.action='getParentChildCIVectors.java?customerID'+customerID;
答案 2 :(得分:0)
简单只是字符串连接将一个变量url
声明为
var url = 'getParentChildCIVectors'; //this is your action
现在,添加参数由
完成url += '?customerID='+customerID;
最后将行动设定为
getCIVectorsFormObj.action = url;
修改强>
传递更多参数然后只连接
url +='customerName='+customerName;
.......
..........