使用jQuery在外部链接附近添加favicon
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery在外部链接附近添加favicon相关的知识,希望对你有一定的参考价值。
From Liviu HolhoÅŸ - Bloghttp://blog.liviuholhos.com/javascript/add-a-favicon-near-external-links-with-jquery
jQuery('a[href^="http://"]').filter(function(){ return this.hostname && this.hostname !== location.hostname; }).each(function() { var link = jQuery(this); var faviconURL = link.attr('href').replace(/^(http://[^/]+).*$/, '$1')+'/favicon.ico'; var faviconIMG = jQuery('<img src="favicon.png" alt="" />')['appendTo'](link); var extImg = new Image(); extImg.src = faviconURL; if (extImg.complete) faviconIMG.attr('src', faviconURL); else extImg.onload = function() { faviconIMG.attr('src', faviconURL); }; });
以上是关于使用jQuery在外部链接附近添加favicon的主要内容,如果未能解决你的问题,请参考以下文章