如何在 jquery 中通过 url 传递参数?
我有这样的代码
getCIVectorsFormObj.action='getParentChildCIVectors';
对于这个动作,我想添加论点
客户ID
像
getParentChildCIVectors.java?customerID=customerID
请帮帮我..我很震惊
提前致谢
如何在 jquery 中通过 url 传递参数?
我有这样的代码
getCIVectorsFormObj.action='getParentChildCIVectors';
对于这个动作,我想添加论点
客户ID
像
getParentChildCIVectors.java?customerID=customerID
请帮帮我..我很震惊
提前致谢
您可以像这样使用页面名称并添加查询参数。getParentChildCIVectors.jsp?customerID=customerID
您必须将参数附加为常规字符串:
getCIVectorsFormObj.action='getParentChildCIVectors.java?customerID'+customerID;
很简单,它只是字符串连接将一个变量声明url
为
var url = 'getParentChildCIVectors'; //this is your action
现在,添加参数由
url += '?customerID='+customerID;
最后将动作设置为
getCIVectorsFormObj.action = url;
编辑
传递更多参数然后只是连接
url +='customerName='+customerName;
.......
..........