作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个模块,其中按钮/超链接应在 MVC 4 View 中显示为图像而不是常规文本。我有以下代码片段。
<td>
<a href="#" data-bind="click: $root.edit"><img src="~/Images/edit.png" /></a>
<a href="#" data-bind="click: $root.remove"><img src="~/Images/del.png" /></a>
<a href="#" data-bind="click: $root.add"><img src="~/Images/add.png" /></a>
I have all the image files added in the solution in the Images folder, but for some reasons, they are not displaying in the UI. The error I am getting is
"GET http://localhost:20823/~/Images/del.png 404 (Not Found) "
"GET http://localhost:20823/~/Images/edit.png 404 (Not Found) "
"GET http://localhost:20823/~/Images/add.png 404 (Not Found) "
最佳答案
您需要使用Url.Content将相对路径解析为绝对路径,例如
<img src='@Url.Content("~/Images.edit.png")' />
关于javascript - 无法在 MVC 4 中加载超链接的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19430756/
我是一名优秀的程序员,十分优秀!