画像の下にURLを表示
by
kenafad
2019-08-14 [2019/08/14 12:07:31]
@@ -7,8 +7,8 @@
$('img').each(function(){
$(this).after(
$('<a />')
- .attr('href', $(this).attr('src'))
.text($(this).attr('src'))
+ .attr('href', $(this).attr('src'))
.attr('target','_blank')
.css({
'position': 'relative',
/*
* @title 画像の下にURLを表示
* @require jQuery
*/
$(function(){
$('img').each(function(){
$(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 です。