1
<div class="modal fade" id="emojimodal" tabindex="-1" role="dialog" aria-labelledby="emojilabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header" id="bgcolorheader">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title" id="myModalLabel">Select emoji</h3>
</div>
<!-- to be dynamically populated from js -->
<div class="modal-body" id="modalDiv"> </div>
</div>
</div>
</div>
我需要在行和引導網格的列在模式中添加圖像。我需要動態使用jQuery來做到這一點。我先用行開始,然後我需要爲每個列擴展相同的邏輯。以下功能僅顯示第一張圖像。我如何讓圖像顯示在多行中?
function createGrid(rownum, imagearraySrc) {
for (var rowIndex = 0; rowIndex < rownum; rowIndex++) {
var rowid = "row" + rowIndex;
var $row = $("<div>", {
"class": "row",
"id": rowid
});
$('#modalDiv').append($row);
var imgid = "img" + rowIndex;
var $img = $("<img>", {
"id": imgid,
"src": imagearraySrc[rowIndex],
});
$($row[rowIndex]).append($img);
}
};
的ROWNUM值獲取傳遞給函數爲2 imagearraySrc包含所有圖像的SRC。目標是擁有x行和y列,並在每個列中都有圖像。所有這些都會以模式顯示,用戶將選擇其中一個。附加的代碼是一個起點,並沒有幫助我前進。有人可以幫忙嗎?
請分享你的'HTML'代碼以及 – Shiladitya
共享的HTML也是如此。 – newstudent