Team:Peking/Test

From 2010.igem.org

(Difference between revisions)
Line 69: Line 69:
function MM_findObj(n, d) { //v4.01
function MM_findObj(n, d) { //v4.01
-
   var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0 && parent.frames.length) {
+
   var p,i,x;  if(!d) d=document;  
-
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
+
  if((p=n.indexOf("?"))>0)
-
  if(!(x=d[n]) && d.all) x=d.all[n]; for (i=0;!x && i<d.forms.length;i++) x=d.forms[i][n];
+
  if(parent.frames.length)
-
   for(i=0;!x && d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
+
   {
-
   if(!x && d.getElementById) x=d.getElementById(n); return x;
+
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);
 +
 
 +
  }
 +
 
 +
   if(!(x=d[n]))
 +
 
 +
  if(d.all)
 +
 
 +
  x=d.all[n];
 +
 
 +
// for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
 +
 
 +
  //for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
 +
 
 +
  i = 0;
 +
 
 +
  while( i < d.forms.length)
 +
 
 +
  {
 +
 
 +
  if( !x )
 +
 
 +
  {
 +
 
 +
  x = d.forms[ i ][ n ];i ++;
 +
 
 +
  }
 +
 
 +
  }
 +
 
 +
  i = 0;
 +
 
 +
  while( i < d.layers.length)
 +
 
 +
  {
 +
 
 +
  if( !x )
 +
 
 +
  if( d.layers )
 +
 
 +
  {
 +
 
 +
x=MM_findObj(n,d.layers[i].document);
 +
 
 +
i ++;
 +
 
 +
  }
 +
 
 +
  }
 +
 
 +
  if(d.getElementById)
 +
 
 +
  if(!x)
 +
 
 +
  x=d.getElementById(n);
 +
 
 +
  return x;
}
}
Line 94: Line 150:
}
}
-
 
//-->
//-->
</script>
</script>

Revision as of 09:53, 22 September 2010

无标题文档