将图像附加到没有id或值的td元素

时间:2015-03-17 01:34:07

标签: javascript html append

我有一个图像元素数组,我使用一个函数来随机化数组,我想以随机顺序将它们追加到HTML表中。但是我试图避免给每个td元素它自己的id,因为有很多...我想知道是否有可能将图像附加到td元素,因为它没有id 。

HTML表格大约有12行,如下所示:

    <table class="piecetray">
            <tr>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
                <td></td>
            </tr>
    etc...

JS

function randomizePieces(myArray) { 
  for (var i = myArray.length - 1; i > 0; i--) { 
    var j = Math.floor(Math.random() * (i + 1)); 
    var temp = myArray[i]; 
    myArray[i] = myArray[j]; 
    myArray[j] = temp; 
  } 
return array; 
}

3 个答案:

答案 0 :(得分:0)

我相信这是你所寻找的基本想法。

$('#table').html(''); //clear the table

for(var x = 0, len = array.length; x < len; x++){ //fill the table
  $('#table').append('<tr>');
  $('#table').append('<td>' + array[x] + '</td>'); //can also add img tag here if you get the SRC for the image
  $('#table').append('</tr>');
}
<table id="table"></table>

答案 1 :(得分:0)

会是那样的吗

$(document).ready(function(e) {

$.each($('.piecetray tr td'), function(index, value){
    var img = $('<img />').attr('src', '').attr('title', index);
        $(value).append(img);
});

});

DEMO

答案 2 :(得分:0)

假设该表已经构建,并且您希望遍历每个td并使用简单的js更新它的背景。

// lets start by getting the `table` element
var tbl = document.getElementsByClassName("piecetray");

// lets get all the child rows `tr` of the `table`
var trs = tbl[0].childNodes[1].getElementsByTagName("tr");
var trlen = trs.length;

//just a test image 
var host = "http://upload.wikimedia.org";
var img = host + "/wikipedia/commons/thumb/2/25/Red.svg/200px-Red.svg.png";

// iterate over the rows `tr`
for (var i = 0; i < trlen; i++) {
    //get the `td`s for this row
    var tds = trs[i].getElementsByTagName("td");
    var tdlen = tds.length;

    //iterate over the cells `td`
    for (var n = 0; n < tdlen; n++) {
        //set `backgroundImage`
        tds[n].style.backgroundImage = "url(\"" + img + "\")";
    }

}

请参阅JSFiddle,希望这至少可以指出正确的方向。