在javascript中打开带有参数的新窗口

时间:2017-05-03 16:35:27

标签: javascript jstl

我有以下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'

1 个答案:

答案 0 :(得分:0)

听起来你需要:

<input type="text" name="fname" value="${param.fname}">

这可能会有所帮助:https://stackoverflow.com/a/1890462/989516