0

我需要将javascript变量“textVal”传递给jsp。我只是想不出正确的语法。我的代码是这样的

 function show(textVal){
   AJAX.onreadystatechange = handler;
   AJAX.open("POST","service.jsp",true);
   AJAX.setRequestHeader("Content-type","application/x-www-form-urlencoded");
   AJAX.send("fname='+textVal+'");
};

我如何将此 textVal 传递给 service.jsp

4

1 回答 1

3

您不需要额外的引号。您可以使用:

AJAX.send("fname="+encodeURIComponent(textVal));
于 2013-05-21T15:18:36.690 回答