1.js中的字符串赋值可以用' '或者" "。
alert('1111');
alert("1111");
document.getElementById('div1').style.display='none';
document.getElementById('div1').style.display="none";
2.jsp传null值给js中的变量a,a和null作判断的时候null需要加引号,因为是字符串的比较,要注意变量==null 与变量==''之间的差别。
var a='<%=varDim%>';
if('<%=a%>'=='null'){
...........
}
3.jsp优先js执行。
jsp先在服务器端执行完,才返回到客户端执行Js代码。嵌套在jsp中的js代码在服务器端作为静态文本输出。