• ie6下的location.href错误


    <a href="javascript:void(0);"
                    onclick="if(confirm('您确定要互换手机1和手机2的号码吗?')) {location.href='ExchangeMobile.aspx?id=<%=_customerInfo.ID %>';}"
                    title="手机1手机2号码互换">互换</a>

    上面的代码在ie6下无法正常跳转,查了下,在后面加上retrun false后就能解决这个问题。

    另外又查到了其他的解决办法:

    <script type="text/javascript">   
    function goUrl(x)   
    {   
         window.location.href
    =x;   
    }   
    </script>   
    <a href="javascript:;" onclick="javascript:goUrl('http://www.sina.com');">跳转1</a>   
    <a href="javascript:void(0);" onclick="javascript:goUrl('http://www.sina.com');">跳转2</a>   
    <a href="javascript:void(0);" onclick="javascript:goUrl('http://www.sina.com');return false;">跳转3</a>   
    <a href="#" onclick="javascript:goUrl('http://www.sina.com');">跳转4</a>   
    <a href="###" onclick="javascript:goUrl('http://www.sina.com');">跳转5</a>  

    测试环境IE6,IE7,Firefox 3。

    跳转1和2在IE6环境下无效,3、4、5在IE6,IE7,Firefox3.01下测试均能 通过,。

    跳转4和5最简洁。

    关键在于<a>的href属性,空链接用"#","###"。

    为了不返回网页顶端。

    空链接推荐用"###"。

    来源:http://www.cnblogs.com/kaima/archive/2008/08/22/1273808.html

  • 相关阅读:
    sql 数据库还原脚本 (kill链接+独占
    最长回文字符串
    UVa 455 Periodic Strings
    UVa 1225 Digit Counting
    UVa 340 Master-Mind Hints
    UVa 10976
    UVa 725
    UVa 11059
    POJ1887 最长下降子序列
    最大连续子序列算法(数组的连续子数组最大和(首尾不相连))
  • 原文地址:https://www.cnblogs.com/vagerent/p/1926367.html
Copyright © 2020-2023  润新知