好的,所以我用HTML製作網站,效果很好,但我需要知道如何在JavaScript頁面上顯示圖像。我在我的網站上在主頁上有一部分叫做新聞,它將顯示關於該主題的圖像,但我不知道如何顯示圖像。當我使用其他網站的方式時,圖像只顯示爲帶有?在中間。請幫忙!!用Javascript顯示圖像
0
A
回答
0
這將工作:
的javascript:
var i = document.getElementById('test'); //get the element to put the picture in
i.innerHTML = '<img src="http://pathtopicture.jpg"></img>'; // append the picture to the divs inner HTML
HTML:
<div id="test"></div>
或者沒有HTML擺在首位(當然你需要html和body標籤...)
代碼:
var i = document.createElement('div');
i.id = 'test';
document.getElementsByTagName('body')[0].appendChild(i);
i.innerHTML = '<img src="http://pathtopicture.jpg"></img>';
0
var img = document.createElement("img");
img.src = src;
img.width = width;
img.height = height;
img.alt = alt;
var theDiv = document.getElementById("<ID_OF_THE_DIV>");
theDiv.appendChild(content);
我這些回答來自:
How to display image with javascript?
How to append data to div using javascript?
相關問題
- 1. 用javascript顯示CAD圖像
- 2. 使用JavaScript顯示圖像
- 3. 用javascript顯示圖像
- 4. Javascript,顯示透明圖像。
- 5. Javascript顯示已選圖像
- 6. JavaScript顯示圖像逐一
- 7. Javascript顯示本地圖像
- 8. javascript圖像不顯示
- 9. 圖像顯示在JavaScript中
- 10. 圖像不顯示在javascript
- 11. 使用javascript和CSS顯示圖像
- 12. 如何使用Javascript顯示圖像?
- 13. 使用PHP和Javascript的圖像顯示
- 14. 用JavaScript顯示圖像問題
- 15. 僅使用javascript顯示圖像
- 16. 用javascript在圖像上顯示文本
- 17. 用javascript動態顯示XML圖像
- 18. 使用JavaScript顯示圖像FileReader
- 19. 如何使用javascript顯示圖像
- 20. 用javascript顯示圖像需要幫助
- 21. 使用Javascript vs HTML來顯示圖像
- 22. 使用JavaScript來顯示圖像
- 23. 用JavaScript顯示/隱藏圖像
- 24. 在面具下顯示圖像css/javascript
- 25. JavaScript:如何顯示壓縮圖像
- 26. JavaScript代碼錯誤:圖像不顯示
- 27. JavaScript幻燈片顯示所有圖像
- 28. 在Javascript中顯示數據庫圖像
- 29. 的Javascript CSS圖像不顯示
- 30. 來自uri的Javascript顯示圖像