リンク先はこんな感じ
<img src="http://127.0.0.1C:/Obrazy/Nowy%20obraz%20mapy%20bitowej.bmp" class="image-preview" style="width: 120px;">
これはリンクを描画するコードです
// images preview button
if ($('table.file-list a[rel="lightbox[images]"]').length > 0) {
$('a.view-style').show();
}
$('a.view-style').click(function(){
$('a.image-size').show('');
$('a.view-style').remove();
$('table.file-list a[rel="lightbox[images]"]').each(function(index) {
var img_src = $(this).attr('href');
$(this).prepend('<img src="'+img_src+'" class="image-preview">');
});
});
C:/Directory から画像を取得することは可能ですか? Windows 7で使用されています。迅速な解決策/回答が必要です。