在 MVC 中显示不在我的项目中的本地图像作为背景图像

show local image which not in my project in MVC as background image

我正在使用 angularJs 来显示 div 的背景图片,但是当我输入完整路径时,它无法检测到图片路径。 但无论如何,实际问题是将本地图像路径作为背景图像Url。

这是代码:

style="background-image: url(C:\PICTURES\IMG_8320.jpg);"

如何使用本地路径作为背景图片?

你需要在它前面加上 file://

喜欢你的css

background-image:url("file:///C:/PICTURES/IMG_8320.jpg");

或样式标签

<style>
#imgDiv{background-image:url("file:///C:/PICTURES/IMG_8320.jpg");}
</style>