当前位置: 代码迷 >> ASP.NET >> iframe javascript:location.replace(url)路径有关问题
  详细解决方案

iframe javascript:location.replace(url)路径有关问题

热度:11057   发布时间:2013-02-25 00:00:00.0
iframe javascript:location.replace(url)路径问题
JScript code
<div class="collapsed"><span>测试菜单</span>        <b><a target="iFrameMain" href="javascript:document.location.replace('web/a')">a</a></b>        <b><a target="iFrameMain" href="javascript:document.location.replace('web/b')">b</a></b></div><iframe id="iFrameMain" name="iFrameMain" scrolling="auto" src="" frameborder="0" ></iframe>


a href 路径会重叠(web/web/a)
这个怎么处理。


------解决方案--------------------------------------------------------
javascript:document.location.replace('web/a')

不要用replace,自己计算

javascript:document.location = "http://www.csdn.net" + "/web/a";
------解决方案--------------------------------------------------------
<b><a target="iFrameMain" href="javascript:document.location.replace('a')">a</a></b>
  相关解决方案