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

时间:2013-09-13 11:20:34

标签: java javascript jquery jsp servlets

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

我的代码是这样的

getCIVectorsFormObj.action='getParentChildCIVectors';

这个动作,我想添加参数

的customerID

getParentChildCIVectors.java?customerID=customerID

请帮帮我.. 我很震惊

提前致谢

3 个答案:

答案 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;  
.......  
..........