我正在处理的项目在 CSS 文件中有硬编码的 URL,如下所示:
a.edit
{
background: url(/TestSite/Images/Edit.png) no-repeat top left;
display: inline-block;
width: 16px;
height: 16px;
padding:1px;
margin:1px;
text-indent: -9999px; /* hides the link text */
}
当站点转移到生产环境时,这些链接会中断。我正在寻找一种解决方案,因此它只适用于网站运行的任何地方。
这是我想出的,它有效,但我想知道是否有更好的方法:
<script>
$(document).ready(function () {
$("a.edit").css('background', 'url(' + $("body").data("baseurl") + 'Images/Edit.png) no-repeat top left');
});
</script>
<body data-baseurl="~/">...</body>