JSP页面 缺少对象
WEB.XML
<welcome-file-list>
<welcome-file>/admin/sm/pages/prescriptions.jsp</welcome-file>
</welcome-file-list>
或者JSP
<jsp:forward page="/admin/sm/pages/prescriptions.jsp"></jsp:forward>
都报错误
24行缺少对象
$(document).ready(function(){
81行缺少对象
alert($$("add_drug").value);
访问的路径是:http://localhost:8080/FreightSupplyProject/
但是路径是:http://localhost:8080/FreightSupplyProject/admin/sm/pages/prescriptions.jsp
就没有问题了
------解决方案--------------------
楼主,当你访问的路径是:http://localhost:8080/FreightSupplyProject/的时候它的相对路径是你部署项目的根目录。。
但是路径是:http://localhost:8080/FreightSupplyProject/admin/sm/pages/prescriptions.jsp
的时候它的相对路径是在跟prescriptions.jsp 这个页面同一个级别的目录,,这样子能耐懂吗??
所以上面的导入js操作,使用绝对路径,就两种方式都可以了 。