1. IE中,如果a标签的地址为空:
<a href="">刷新</a>
IE的解析为浏览器的根路径,比如当前的url地址为:http://www.example.com/hello.html , 那么IE的解析为:http://www.example.com/
而其他所有浏览器行为一致,都是 location.href。
所以,为了兼容,慎用空链接。
2. form的action地址为空。
<form action="" method="POST" id="post_form"></form>
IE浏览器解析的地址为当前URL去掉QueryString部分,比如 当前URL地址为:http://www.example.com/hello.php?action=login ,那么IE POST的路径将会是:http://www.example.com/hello.php
而其他浏览器行为一致,都是 location.href。
用 document.getElementById(‘post_form‘).action 拿到的地址即为浏览器解析行为地址,要正确获得action中的值,应该用
document.getElementById(‘post_form‘).getAttribute(‘action‘) 获取结果为空字符。
时间: 2024-10-08 10:42:01