Prototype学习——工具函数($H,$R,Try.these,document.getElementsByClassName)

时间:2022-01-09 19:11:51

$H就是建立Hash对象的便捷方法,关于Hash对象具体参考【Prototype 学习——Hash对象

$R就是简历ObjectRange对象的便捷方法,关于ObjectRange对象具体参考【Prototype 学习——ObjectRange对象

 

Try.these:

Accepts an arbitrary number of functions and returns the result of the first one that doesn't throw an error.

 

 

看一个例子(不同的浏览器有不同的创建XMLHttpRequest的方法):

 

document.getElementsByClassName():

根据这个方法的名字大概就能猜到这个方法的用途了。但是这个方法在1.6里面被标记成

deprecated的了。被$$和Eelement.select方法代替了,关于这两个方法,后面在讲。