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