画像の下にURLを表示
by
kenafad
2019-08-14 [2019/08/14 12:07:31]
@@ -5,7 +5,7 @@
$(function(){
$('img').each(function(){
- if($('this').attr('src') != null)
+ if($(this).attr('src'))
$(this).after($('<a />')
.text( $(this).attr('src') )
.attr('href', $(this).attr('src'))
/*
* @title 画像の下にURLを表示
* @require jQuery
*/
$(function(){
$('img').each(function(){
if($(this).attr('src'))
$(this).after($('<a />')
.text( $(this).attr('src') )
.attr('href', $(this).attr('src'))
.attr('target','_blank')
.css({
'position': 'relative',
'z-index': 100
})
);
});
});
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。