1. JS代码在JSP页面中, 这可以直接使用EL表达式. 如:
[html] view plain copy
<script type="text/javascript">
$(function () {
new BacklogOverview("${param.alert}")
})
</script>
2.JS代码是单独的.js 文件, 通过引入到 JSP中来.这时候可通过提前定义JS变量的形式的解决,如:
[html] view plain copy
<c:set var="contextPath" value="${pageContext.request.contextPath}" scope="application"/>
<script>
<%--JS gloable varilible--%>
var contextPath = "${contextPath}"
</script>
在JSP页面上定义JS变量 contextPath.
这样在之后引入的JS文件中就可以使用contextPath变量了.
[html] view plain copy
//Image setting
config.filebrowserImageUploadUrl = contextPath + "/ckeditor/upload.htm"
js控制中用到了el表达式,最开始源码如下:
var selected = ${requestScope.xxxxForm.recordNumPerPage}这样始终js错误,因为在第一次的时候requestScope.xxxxForm.recordNumPerPage为null。
于是在boss的指导下,简单的加了两个引号,代码变成
var selected = “${requestScope.xxxxForm.recordNumPerPage}”功能自动实现。
附上整个函数代码:
function getSelected(name){var selects = document.getElementsByName(name)
var selected = “${requestScope.xxxxForm.recordNumPerPage}"
if(selected == undefined || selected == null || selected ==""){
return false
}
for(var j = 0 j < selects.length j++ ){
for(var i = 0 i = selects[j].length i++){
if(selects[j].options[i].value == selected){
selects[j].options[i].selectd = true
}
}
}
}
总之,在js中使用el表达式一定要使用双引号。