您的位置:首页 > Web前端 > JavaScript

IE、Firefox中JavaScript兼容问题

2010-08-31 16:34 274 查看
1、使用window.location.href遇到的问题

使用window.location.href实行跳转

不兼容代码:

<a href="#" mce_href="#" onclick="JavaScript:window.location.href='UseAdd_init.action';" ><input type="button" value="增加"/></a>


在IE下面跳转正常,但是在FF下面就不行。

问题所在:删除href属性,加入target属性,问题就解决了。

2、使用JavaScript获取时间的问题

不兼容代码:

var now = new Date();
now.toLocaleString();
var year = now.getYear(); //有问题


兼容代码:

var now = new Date();
now.toLocaleString();
var year = now.getFullYear();
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: