为什么jsp中无法导入js文件?

如题所述

js无法导入jsp原因是js路径配置错误,建议使用以下办法导入:

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+request.getContextPath()+"/";
%>
head里面:
<script language="javascript" src="<%=basePath %>JS/CheckForm_001/checkForm.js"> </script>

如果还不行,那就是 checkForm.js写的有问题,一般找不到对象就是这个js没加载进去。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答