裏面我有我的木偶視圖中使用的HTML模板。當我在渲染函數中調用它時,我在模板中傳遞了一個參數。我想根據參數的值添加多個div元素。如何在html模板中添加for循環?如何爲循環使用HTML模板
<div id="mainArea">
<div data-role="view">
<div id="scrollView" data-role="scrollView" data-stretch="true">
<div id = 'leftArrowImage' class="leftArrowImage">
</div>
<div id = 'mainViewArea'></div>
<div id = 'rightArrowImage'></div>
/* I have passed a variable here named allWidgets. I want to add the number of divs(<div data-role="page" ></div>) equal to the length of allWidgets array. How do I do that*/
</div>
</div>
</div>
?答案取決於你用來構建HTML的內容。 – Erik 2014-12-05 12:29:27
我想用JSTL – 2014-12-05 12:42:04
或者使用scriplets – 2014-12-05 12:59:12