- zuroc
- 等级:
- 性别:
- 文章: 138
- 积分: 561
- 来自: 江苏
|
随便写着玩玩,想当然的认为性能应该不错吧.不知道怎么测试.....................
使用演示
html 代码
- <script>
- window.onload=function(){
- alert($("#div1").innerHTML)
- alert($("#div1 .class2 div")[0].innerHTML)
-
- }
- <!---->script>
- <!---->head><body>
- <div id="div1">
- div id="div1"
- <div class="class2">
- div class="class2"
-
- <div>div<!---->div>
-
- <!---->div>
- <!---->div>
js 代码
- function $A(o){
- var i=o.length,a=[];
- while(i)a[--i]=o[i]
- return i==0?a:[o];
- }
-
- function copy(d,o) {
- for(var i in d)if(!o[i])o[i]=d[i]
- return o
- }
- function extend(d,o){copy(d,o.prototype)}
-
- extend({
- indexOf
- :
- function(o){
- var i=0,l=this.length;
- for(;iif(this[i]==o)return i;
- return -1;
- },
- U:
- function(p){
- var i=0,j,l=p.length;
- while(iif(this.indexOf(p[i])==-1)this.push(p[i++]);
- },
- each:
- function(f){
- var l=this.length,i=0;
- while(ithis[i++])
- }
- },Array);
-
-
- function $(o){
-
- return css_select(o,document);
- }
-
- function css_select(o,s){
-
- o=o.split(' ');
-
- var l,g,c,d;
-
-
- if("#"==o[0].charAt(0))s=s.getElementById(o.shift().substring(1));
-
- if(o[0]){
- s=[s];
- o.each(
- function(i){
- if("."==i.charAt(0))c=i.substring(1),i='*';
- l=[];
- s.each(function(e){
- g=e.getElementsByTagName(i)
- if(c){
- d=$A(g);
- g=[];
- d.each(
- function(e){
- if(e.className.split(/\s+/).indexOf(c)>-1)g.push(e);
- });
- c=0;
- }
- l.U(g);
- });
- s=l;
- });
- }
-
- return s;
- }
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
|
返回顶楼 |
|
|