博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

jQuery---为链接添加链接图像

Posted on 2008-10-15 20:53  linFen  阅读(666)  评论(0编辑  收藏  举报
$(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