我需要将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