jsp頁面中js中el表示式使用
阿新 • • 發佈:2019-01-01
jsp頁面中js中不能使用el表示式,如若使用,應在body的onload中新增方法,同時
在body體中使用隱藏域,以EL表示式形式獲取後臺attribut中引數,然後在onload對應js中通過
document.getElementById()方法,獲取屬性進行操作;
// 根據渠道型別決定是否展示四級渠道 function fourChannelFlag(){ var roleID=document.getElementById('roleId').value; var levelId=document.getElementById('levelId').value; var chanelType=document.getElementById('chanelType').value; if(chanelType=="XB02" && roleID=="R14" && levelId=="C02"){ $("#fourChannel").show(); $("#fourChannel2").show(); }else{ $("#fourChannel").hide(); $("#fourChannel2").hide(); }