兼容低版本 IE 的 JScript 5.5 实现

作者:andot 来源:CoolCode.CN 时间:2008-07-01 12:48:00 

IE 5.5 中的 JScript 版本是 5.5 版,它比以前版本的 JScript 中多了如数组的 push、pop、shift、unshift 方法和 encodeURI、decodeURI 等一些重要的函数。而这些增加的内容在目前其他浏览器(如 Moziila/Firefox 和 Opera)上也同样支持。因此目前开发网站一般对于 IE 浏览器只能兼容到 5.5 版,而对于更低版本的 IE(如 IE 5、IE 4 等),则不再去考虑了。

虽然这些低版本的 IE 浏览器目前已经不是主流,但如果能够不需要修改现有代码就能够兼容它们的话,倒是也可以考虑。因此我做了这个兼容低版本 IE 的 JScript 5.5 实现。当然它不可能完全兼容 JScript 5.5,但对于最常用的一些方法,都已经实现了。

微软《JScript 语言参考》中文版(chm)下载

该库使用非常简单,只需要在网页的 head 部分加入:


<script type="text/javascript" src="iecompat.js"></script> 

就可以了。

2006年6月18日 更新

增加 encodeURI、encodeURIComponent、decodeURI、decodeURIComponent 对 4 字节 UTF8 编码的支持。

2006年2月17日 更新

对 encodeURI、encodeURIComponent、decodeURI、decodeURIComponent 进行了优化,大大的提高其处理速度。

完全实现的:

  • Array 对象中:

    • push 方法

    • pop 方法

    • shift 方法

    • unshift 方法

    • splice 方法

  • Date 对象中:

    • toDateString 方法

    • toTimeString 方法

    • toLocaleDateString 方法

    • toLocaleTimeString 方法

  • Function 对象中:

    • apply 方法

    • call 方法

  • Global 对象中:

    • undefined 属性

    • encodeURI 方法

    • encodeURIComponent 方法

    • decodeURI 方法

    • decodeURIComponent 方法

  • Number 对象中:

    • toExponential 方法

    • toFixed 方法

    • toPrecision 方法

对于错误处理,IE 5(JScript 5)中已经有了 try…catch 和 throw 语句,因此 decodeURI、decodeURIComponent、toExponential、toFixed、toPrecision、apply 如果出现运行期错误,在 IE 5 上会抛出跟 IE 5.5+ 中一样的错误信息,但是因为 IE 4 没有错误处理语句,如果上述函数出现运行期错误,将会返回 null。注意上面说的运行期错误,不是指上述函数实现中的错误,而是指在这些函数正常工作的情况下应该出现的错误。

其中 Function 的 apply 函数的实现参考了http://www.openjsan.org/doc/a/ad/adamk/Upgrade/0.04/lib/Upgrade/Function/apply.html
这段程序。

不完全实现的:

  • Error 对象

  • Object 对象中:

    • isPrototypeOf 方法

    • hasOwnProperty 方法

    • propertyIsEnumerable 方法

  • String 对象中:

    • toLocaleLowerCase 方法

    • toLocaleUpperCase 方法

    • localeCompare 方法

因为 IE 4 不具备错误处理语句,因此 Error 对象在 IE 4 上并不具备 IE 5 以上 Error 对象应具有的功能,因此它对于 IE 4 的实现只能保证你在访问或创建它时不会出错。

Object 中的 isPrototypeOf、hasOwnProperty 和 propertyIsEnumerable 方法只是做了模拟实现,其返回值并非总是正确。

String 对象中的 toLocaleLowerCase、toLocaleUpperCase 和 localeCompare 方法实际上并没有考虑本地字符集,但在大部分系统上它还是工作正常的。

完全没有实现的:

  • 正则表达式对象中扩充的属性和限定符

.
———————————————–

如果你想测试低版本的 IE 浏览器上的效果,又没有安装低版本的 IE 浏览器,可以使用这个包:ie_all.zip。这里面都是不需要安装的 IE,直接释放压缩包到一个目录下,就可以运行了。如果你是 win9x 系统,可以到这里下载 win9x 版的 standalone IE。

iecompat.js 部分代码:

function Error(number, description) {
    if (!number) this.number = 0;
    else this.number = number;
    if (!description) this.description = "";
    else this.description = description;
}
 
@end @*/
 
/*@if (@_jscript_version < 5.5)
 
// this return value was not very correct
Object.prototype.isPrototypeOf = function (o) {
    return (this.constructor == o.constructor);
}
 
// this return value was not very correct
Object.prototype.hasOwnProperty = function (proName) {
    return (typeof(eval("this." + proName)) != "undefind");
}
 
Object.prototype.propertyIsEnumerable = function (proName) {
    for (var o in this) {
        if ((proName == o.toString()) &&
           (proName != "propertyIsEnumerable") &&
           (proName != "isPrototypeOf") &&
           (proName != "hasOwnProperty")) return true;
    }
    return false;
}
 
Error.prototype.message = "";
Error.prototype.name = "Error";
 
Date.prototype.toDateString = function () {
    var s = this.toString().split(' ');
    return [s[0], s[1], s[2], s[5]].join(' ');
}
 
Date.prototype.toTimeString = function () {
    var s = this.toString().split(' ');
    return [s[3], s[4]].join(' ');
}
 
Date.prototype.toLocaleDateString = function () {
    return this.toLocaleString().split(' ')[0];
}
 
Date.prototype.toLocaleTimeString = function () {
    return this.toLocaleString().split(' ')[1];
}
 
String.prototype.toLocaleLowerCase = function () {
    return this.toLowerCase();
}
 
String.prototype.toLocaleUpperCase = function () {
    return this.toUpperCase();
}
 
String.prototype.localeCompare = function (str) {
    if (this > str) return 1;
    if (this < str) return -1;
    return 0;

 

完整iecompat.js 下载地址:iecompat.js.rar (3.61 KB)

标签:jscript,ie,兼容,浏览器
0
投稿

猜你喜欢

  • 形象化的reflow

    2008-06-08 13:33:00
  • ASP表单验证方法总结

    2007-10-06 22:43:00
  • 使用组件来保护你的ASP代码

    2008-06-03 13:47:00
  • SQL SERVER 日志已满的处理方法

    2010-07-31 13:32:00
  • asp如何用组件实现自动发送电子邮件?

    2010-06-16 09:56:00
  • 如何判断电子邮件的地址格式是否正确?

    2010-01-12 20:12:00
  • Javascript学习第一季 二

    2008-06-24 18:20:00
  • 自动备份Oracle数据库

    2010-07-31 13:10:00
  • 服务器响应HTTP的类型ContentType大全

    2007-10-23 10:21:00
  • 运用ASP调用数据库中视图及存储过程

    2008-02-03 15:33:00
  • 好习惯和坏习惯

    2009-01-20 12:51:00
  • suggest项目总结-用户体验篇

    2008-01-30 20:04:00
  • 一些sql语句

    2009-04-10 18:36:00
  • 一段查看ASP文件源码的ASP程序

    2007-09-21 12:53:00
  • 谈谈FACEBOOK的一处产品细节

    2008-03-11 11:05:00
  • Ajax的错误处理机制探讨

    2007-09-07 09:53:00
  • asp如何删除数据库中的表或索引?

    2010-06-26 12:23:00
  • 用纯CSS3绘制的网站图标

    2010-03-28 13:51:00
  • 表单制作方式大比拼

    2008-10-09 11:32:00
  • asp更改Windows2000管理者密码?

    2010-06-26 11:03:00
  • asp之家 网络编程 m.aspxhome.com