当前位置: 代码迷 >> Web前端 >> 有IE6的base标签引发的有关问题.IE explorer cannot open web site
  详细解决方案

有IE6的base标签引发的有关问题.IE explorer cannot open web site

热度:647   发布时间:2012-09-03 09:48:39.0
有IE6的base标签引发的问题.IE explorer cannot open web site
项目在本机运行没有问题.在用IE6代开时 某些页面出现IE explorer cannot open web site.....开始还以为是jquery的问题 后来慢慢查找才发现是因为base标签没有关闭的原因..
    <base href="<%=basePath%>">

改为
    <base href="<%=basePath%>"></base>

将base标签闭合...问题解决..
参考的
IE6的base标签导致页面结构大混乱
http://blog.csdn.net/cheng5128/article/details/5605988
  相关解决方案