我有一個幻燈片放在一起,但我無法使用onClick
插入一個額外的圖像。我錯過了什麼?將圖像添加到javascript幻燈片
function newDivs(n) {
var i;
var x = document.getElementsById("photo");
if (n > x.length) {
slideIndex = 1
}
if (n < 1) {
slideIndex = x.length
};
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
x[slideIndex - 1].style.display = "block";
}
<input type="text" name="photo" id="photo" value="http://static.boredpanda.com/blog/wp-content/uuuploads/cute-baby-animals/cute-baby-animals-23.jpg" />
<button id="addPicture" onclick="newDivs(+1)">Add New Image</button>
你得到一個錯誤信息?它說什麼? – WillardSolutions
onclick沒有插入任何圖像,也沒有'getElementsById'這樣的東西。 – xandercoded
您能解釋一下您得到的錯誤是什麼以及您期望或期望的行爲是什麼? –