<body>
<img src="file:///G:/Flower_Fields_5.jpg" width='300' height='190' />
</body>
&#13;
当我使用上面的代码
时,此图片代码无效答案 0 :(得分:1)
<img src="'file:///G:/Flower_Fields_5.jpg" width='300' height='190' />
^
上面提到的额外单引号
答案 1 :(得分:1)
这应该有用。
<img alt="" src="file:///C:/Users/Roby/Pictures/battlefield-3.jpg" width='300' height='190' />
答案 2 :(得分:1)
尝试
低于一个
了解图片的absolute path and relative path
<img src="http:\\localhost\site\img\mypicture.jpg"/>
希望这应该有用