}是什么语法?我没见过,我用的是c#
如果${user.uId
}是后台程序传过来的话你可以赋值给<input
type="hidden"
id="userId"
value="${user.uName}">
然后
function
doit(flag,id)
{
if(flag=="modify"){
var
userId=document.getElementById('userId')
window.location.href="UserServlet?action=UserInfo&userId="+userId
alert(userId
}
}
如果你确定id是传过来了的,那么你的这句话有问题:
window.location.href="UserServlet?action=UserInfo&userId=id"
应该是
window.location.href="UserServlet?action=UserInfo&userId="+id
window.location.href="servlet/buynow1?gimg="+gimg + "&gcontent="+gcontent + "&gprice="+gprice少了两个+号