我對JavaScript非常陌生。並希望能得到任何幫助。我正在嘗試創建一個動態採用imgsrc的腳本,併爲登錄用戶顯示圖像。使用JavaScript設置動態圖片src
例如:https://sampleimage.com/?uid=user1
https://sampleimage.com/?uid=user2
https://sampleimage.com/?uid=user3
https://sampleimage.com/?uid=user4
我設法想出下面,但它不工作。我在這裏錯過了什麼?
<script type="text/javascript">
var imgsrc = "https://sampleimage.com/?uid=userid"
document.getElementById('img-circle').setAttribute('src', imgsrc);
</script>
<img alt="Badge Photo" class="img-circle" src="empty.jpg" title="crakesh" height="40" width="38"/>
你的代碼運行的元素存在之前,你設置'IMG-circle'是class not the id,所以getElementById在這種情況下不起作用 –
在JavaScript中是否有相當於getElementById的類。我試過「getElementsbyClassName」,但它不起作用 – rakesh