HREF.JS
上传用户:szhf331
上传日期:2022-06-22
资源大小:1032k
文件大小:1k
源码类别:

行业应用

开发平台:

JavaScript

  1. //add event function
  2. function addEvent(obj, evType, fn){ 
  3. if (obj.addEventListener){ 
  4.    obj.addEventListener(evType, fn, true); 
  5.    return true; 
  6. } else if (obj.attachEvent){ 
  7.    var r = obj.attachEvent("on"+evType, fn); 
  8.    return r; 
  9. } else { 
  10.    return false; 
  11. }
  12. // Find all this. elements and add an onfocus attribte and value
  13. function hideFocusBorders(){
  14. var theahrefs = document.getElementsByTagName("a");
  15. if (!theahrefs){return;}
  16. for(var x=0;x!=theahrefs.length;x++){
  17. //theahrefs[x].onfocus = function stopthis.Focus(){this.hideFocus=true;};
  18. }
  19. }
  20. //event added using the addEvent() function above
  21. addEvent(window, 'load', hideFocusBorders);