读书人

用了basepath,在chrome,firefox上均正

发布时间: 2013-02-17 10:44:46 作者: rapoo

用了basepath,在chrome,firefox下均正常,惟独操蛋的IE不行


<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";
%>
<base href="<%=basePath%>">



<img src="images/gmmb.jpg" width="53" height="44" alt="用了basepath,在chrome,firefox上均正常,惟独操蛋的IE不行" />


用的相对路径在IE下得不到图片, 其他浏览器正常
在IE下的地址变成
"http://%20http//localhost:80/selfservice/images/gmmb.jpg"
[解决办法]
那你只有对IE做特殊处理了

读书人网 >Java Web开发

热点推荐