html中onclick()里面传变量到javascript中的问题,小小的记录下:
传变量的话一定要加 ''
<span onclick="sellGoods('${session.member.membName}')" style="cursor: pointer;">
<font color="#000000">出售物品</font>
</span>
下面是后台放入session中的值:
HttpSession httpSession = request.getSession();
httpSession.setAttribute("member", member);
然后是javascript中的sellgoods(),前面要先定义var membName:
var membName;
function sellGoods(membName){
//Ext.QuickTips.init();
alert(11111111111111);
alert(membName);
}