0

如何在 jquery 中通过 url 传递参数?

我有这样的代码

getCIVectorsFormObj.action='getParentChildCIVectors';

对于这个动作,我想添加论点

客户ID

getParentChildCIVectors.java?customerID=customerID

请帮帮我..我很震惊

提前致谢

4

3 回答 3

0

您可以像这样使用页面名称并添加查询参数。getParentChildCIVectors.jsp?customerID=customerID

于 2013-09-13T11:24:45.780 回答
0

您必须将参数附加为常规字符串:

getCIVectorsFormObj.action='getParentChildCIVectors.java?customerID'+customerID;
于 2013-09-13T11:26:07.353 回答
0

很简单,它只是字符串连接将一个变量声明url

var url = 'getParentChildCIVectors';  //this is your action 

现在,添加参数由

url += '?customerID='+customerID;   

最后将动作设置为

getCIVectorsFormObj.action = url;  

编辑
传递更多参数然后只是连接

url +='customerName='+customerName;  
.......  
..........
于 2013-09-13T12:08:07.160 回答