$(document).ready(function() {
$('#extlinks a').filter(function() {
return this.hostname && this.hostname !== location.hostname;
}).after(' <img src="external.png" alt="link">');
});
//this.hostname : 当前链接href的 www.**.com
//location.hostname : 地址栏的 www.**.com
本篇文章来源于 cssrain.cn 原文链接:http://www.cssrain.cn/article.asp?id=1115