文字連結替換圖片

適用於奇怪的文字網站會把圖片弄成這樣:
http://mlwmlw.org/wp-content/uploads/2012/03/risk.png

(function($) {
$('a').each(function() {
  if( /jpg|jpeg|png/.test($(this).text())) {
    $(this).append('<img src="'+$(this).text()+'" />');
  }
});
})(jQuery);

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *