我試圖編輯在javascript中for循環中重複的圖像高度,但我無法弄清楚我需要將其添加到哪裏。Javascript:在for循環中編輯圖像高度
這裏是變量,如果它是很重要的:
var i;
var start = 1;
var seg = document.getElementById("selSegs").value;
var parent = document.getElementById("divInch"), //parent for appendChild
imagePath = 'InchwormSegment.gif', //variable for image
img; //adding img element
這裏是我的循環:
for(i = start; i<=seg; i++) {
img = new Image(); //creating new image object
img.src = imagePath; // element src = imagePath
img.style.height = "215px"; // sets the height of all in loop
// img.style.height = (img.style.height * .9) + "px"; - does nothing
parent.appendChild(img); //appendChild adds another child (img) object
}
我嘗試添加一些數學,但我不能揣摩出它應該去
你們是不是要減少或增加在每次迭代圖像的高度?因爲現在圖像高度將保持在215px – samrap
@samrap我試圖減小圖像的高度 – brianforan