首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

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

2012-03-11 
iframe javascript:location.replace(url)路径问题JScript codediv classcollapsedspan测试菜单/s

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

JScript code
<div class="collapsed"><span>测试菜单</span>        <b><a target="iFrameMain" href="javascript:document.location.replace('web/a.html')">a.html</a></b>        <b><a target="iFrameMain" href="javascript:document.location.replace('web/b.html')">b.html</a></b></div><iframe id="iFrameMain" name="iFrameMain" scrolling="auto" src="" frameborder="0" ></iframe>


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


[解决办法]
javascript:document.location.replace('web/a.html')

不要用replace,自己计算

javascript:document.location = "http://www.csdn.net" + "/web/a.html";
[解决办法]
<b><a target="iFrameMain" href="javascript:document.location.replace('a.html')">a.html</a></b>

热点排行