问题描述
如题比如我一开始设置为 /reg,我登录访问的是 /reg/index.jsp,这样我页面里的 image 就是 /reg/images/1.gif如果设置改为 /, 那我登录访问的就是 /index.jsp,这样我页面里的 image 就是 /images/1.gif目前使用的应对方法是:String contextPath = request.getContextPath();<%= contextPath %>/images/1.gif请问有没有更好的,这样我在Dreamweaver中就能显示图片了
解决方案
使用相对路径<img src='images/1.gif'>/level2/index.jsp 就用<img src='../images/1.gif'>
时间: 2024-09-14 19:11:48