- 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>