MacOS 如何加载图片以及文件目录有空格
MacOS 是没有硬盘分区的,所以引用文件直接:
<img src="file:///Users/usrn/location" width="x" height="y"/>
假设文件目录有空格,直接将空格换成:
%20
如下:
<img src="file:///Users/usrn/Desktop/location/space%20space/Images/IMG.png" width="x" height="y"/>
Sta99er
MacOS 如何加载图片以及文件目录有空格
MacOS 是没有硬盘分区的,所以引用文件直接:
<img src="file:///Users/usrn/location" width="x" height="y"/>
假设文件目录有空格,直接将空格换成:
%20
如下:
<img src="file:///Users/usrn/Desktop/location/space%20space/Images/IMG.png" width="x" height="y"/>