我无法从html获取参数到jsp

时间:2017-07-12 11:28:28

标签: html jsp parameters

我正在使用'get'方法移交参数但代码有错误是什么问题?

在html中我将参数发送到jsp,如下所示

<script type=text/vbscript>MsgBox(15266)</script>

在开发工具中

url?cntr_no=" + cntrInfo.cntr_no + "&cntr_rev=" + cntrInfo.cntr_rev+"&vd_cd=" + cntrInfo.vd_cd + "&random_value=" + cntrInfo.random_value;

但 在jsp中 我得到参数

cntrInfo.cntr_no  = "CTR170700199"
cntrInfo.cntr_rev = "1"
cntrInfo.vd_cd = "VA100040"
cntrInfo.random_value = "$qZ3xIIt1YnfBcf!I@#j"

时间不够长 但是'#'后我无法获得价值 什么是错的,我该如何解决?

1 个答案:

答案 0 :(得分:0)

你需要编码url,在stackoverflow上有很多这样的例子,你也可以参考这个 https://stackoverflow.com/a/10786112/4402533