使用javascript将值发送到servlet

时间:2010-05-14 07:39:46

标签: javascript

在我的JavaScript函数中,我喜欢这样,以便将参数重定向到servlet:

var ids1=document.getElementById("projet").value;
document.location.href("http://localhost:8080/Opc_Web_App/ServletAffectation?ids1="+ids1);

并在servlet中执行以下操作以获取Value:

String idprojet= request.getParameter("ids1");
System.out.println("le projet selectionné est :" +idprojet);

我的屏幕上没有System.out.print结果的问题;所以在其他方面,servlet没有得到参数。

直到现在我才看到问题。 请帮忙。 谢谢。

1 个答案:

答案 0 :(得分:0)

有可能

var ids1=document.getElementById("projet").value;

什么都没有回来?

此外,

System.out.println(..)
打印到控制台或终端提示符,而不是浏览器页面。要输出到浏览器,请使用
 response.getWriter().println(..)