這是我的形象:如何更改視圖IMG SRC MVC
<img id="1star" src="~/Content/Images/emptystar.png" onmouseover="setStars(1)" onmouseout="setStarsBack()" onclick="location.href='@Url.Action("SetRating", "CreativeModels", new { id = GlobalVariables.CurrentBookId, rating = 1 })'" />
這個功能應該改變圖像的源代碼:
function setStars(amount) {
if (amount > 0) {
document.getElementById("1star").src = "~/Content/Images/filledstar.png";
}
}
它改變了,但瀏覽器說,這它無法加載圖像。這是鼠標移動到圖片後什麼瀏覽器顯示:
這是圖像移動鼠標到之前的樣子圖片:
我應該如何改變src
財產?
謝謝,這解決了我的問題! –