<% if(empRecNum != null && !(empRecNum.equals(""))) { empSelected=true; } boolean canModify = UTIL.hasSecurity("PFTMODFY") && empSelected; %> <script type="text/javascript"> function add(){ alert(canModify); df('ADD'); } </script>
我需要在JavaScript中提醒canModify
我知道我使用这样的东西:
<% String s = "BOB"; %> <script> alert('<%= s %>'); </script>
’<%=%>’标签允许您输入java变量的值。