-1

这是链接的样子

<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 上使用。需要一个快速的解决方案/答案。

4

1 回答 1

1

在图像 url 路径之前使用 file:///

file:///C:/Obrazy/Nowy%20obraz%20mapy%20bitowej.bmp

于 2013-11-11T19:50:37.703 回答