0
A
回答
0
比方說,你有下面的代碼...
<div id='container'>
<img src='some location'>
</div>
您可以用下面的jQuery代碼改變形象...
function change_image(){
$("#container").html("<img src='some other image location'>");
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
讓我知道它是否有效。
0
因爲你說你是jQuery的新手,所以我在註釋代碼時特別注意。你沒有真正指定背景圖像應該如何設置,所以我在縮略圖上使用了一個點擊事件。
代碼:
// before doing our magic with jQuery,
// we must wait for the dom to be ready to be manipulated
$(document).ready(function() {
// listen for a click on any img inside the .images
$('.images img').on('click', function() {
// inside the event handlers callback, THIS refers to the img that was clicked
// here we save the src property of the clicked img to a variable
var imgSrc = $(this).prop('src');
changeBackgroundImg(imgSrc);
});
});
function changeBackgroundImg(imgSrc) {
// we can set any css property to an element with jQuerys .css()
$('body').css('background-image', 'url(' + imgSrc + ')');
}
這裏有一個demo。
鏈接到相關的文檔代碼:
相關問題
- 1. jquery更改div背景圖片點擊
- 2. 如何使用jQuery更改背景圖片「點擊」?
- 3. 按鈕點擊更改背景圖片
- 4. 在點擊javascript更改背景圖片
- 5. 點擊更改背景圖片
- 6. 點擊jquery更改背景
- 7. 用jQuery和html5點擊更改背景圖片
- 8. 使用模板更改懸停/點擊按鈕背景圖片
- 9. 當點擊圖片時更改背景圖片
- 10. 用jquery更改背景圖片wbkit
- 11. 用jquery更改背景圖片
- 12. 點擊使用jquery更改背景圖像
- 13. jquery更改點擊圖片
- 14. 背景圖片點擊
- 15. jQuery Parent UL背景更改點擊
- 16. jQuery每次點擊更改背景
- 17. UIButton背景更改點擊
- 18. 使用jQuery改變背景圖片
- 19. 更改背景圖片 - jQuery UI的
- 20. jquery - toggleClass不更改背景圖片
- 21. 點擊時更改背景圖像 - Android
- 22. UIButton背景圖像點擊更改
- 23. jquery - 背景圖像點擊
- 24. 更改背景圖片
- 25. 更改背景圖片div
- 26. 更改UINavigationBar背景圖片
- 27. MapKit:更改背景圖片?
- 28. 更改背景圖片
- 29. 用jQuery點擊更改圖片
- 30. 與點擊更改CSS背景圖片 - while循環不工作
我清理你的問題有點。你試過什麼了?任何我們可以離開的地方? – Celeo 2015-03-30 22:14:04