Firefox中的window.location onload

时间:2010-09-24 16:16:36

标签: javascript firefox onload

对每个人来说可能都是一个简单的问题。这会在Chrome和Safari中显示包含该位置的提醒,但在Firefox

中无效
<html> 
<head> 
<script type="text/javascript"> 
function onload() {
var loc = window.location;
alert("url is " +loc);
return false;
}
</script> 
</head> 
<body onload="onload()"> 
</body> 
</html> 

任何想法

1 个答案:

答案 0 :(得分:2)

请勿使用onload等名称。

<html> 
<head> 
<script type="text/javascript"> 
function loader() {
    var loc = window.location;
    alert("url is " +loc);
    return false;
}
</script> 
</head> 
<body onload="loader()"> 
</body> 
</html>