我有以下javascript函数。我试图在新窗口中打开一个jsp并从该函数传递一些值:
function editStudent(fname){
alert("hi");
var editWindow = window.open("studentEdit.jsp?fname="+fname, " ", "width=300,height=300");
editWindow.focus();
}
上面的javascript函数将在按钮点击时调用。新窗口打开但参数在studentEdit.jsp
中返回'null'答案 0 :(得分:0)
听起来你需要:
<input type="text" name="fname" value="${param.fname}">