我使用Mvc和jQuery,我想知道如何獲取圖像顯示。如何替換css類背景圖像
我
<img src="@Url.Action("GetImage", "Dashboard")" id="images" alt="image description" width="100" height="72" />
和我的紙條標籤內我有
<script type="text/javascript">
getTheme();
var imageSource = $('#images');
var newimg = $('.logo');
newimg.css({'background-image', 'Url('+imageSource+')'});
</script>
我想這是源: 的圖像,則沒有表現出你能幫助我。
當你這樣做的ImageSource你得到'object'還給你,所以當你試圖將'imageSource'作爲'background-image url'注入時,它試圖使用一個對象。你需要獲得'imageSource對象'的'src屬性'。這可以通過執行像''imageSource = imageSource.attr('src')'來實現。然後在'var imageSource'和'var newimg'之間插入 - 這會給你想要的效果。 – Ohgodwhy
謝謝它工作! – vudz