function onloadFun(){
	  if(window.$){
	    $(document).ready(function(){
	      /*去除链接,button,image button的点击时虚线框*/
	      $("a,input[type='button'],input[type='image'],input[type='submit'],area,img").bind("focus",function(){
	        if(this.blur){
	          this.blur();
	        }
	      })
	    })
	  } else {
	    setTimeout("onloadFun()",1000);
	  }
	}
	onloadFun();

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2022-12-23
  • 2021-09-30
猜你喜欢
  • 2021-07-04
  • 2022-12-23
  • 2021-12-25
  • 2021-12-25
  • 2022-01-18
相关资源
相似解决方案