我正在尝试在我的 jQueryMobile 页面中插入一个动态列表。
在我的主页中,我有一个名为“list”的 HTML ul 元素:<ul id='list' data-role='listview'>
</ul>
每个列表元素都包含一个网格 ( class="ui-grid-a"
)。网格中的第一个 div,每个元素 ( div class="ui-block-a"
) 包含一个 h2 描述,而第二个包含三个水平排列的按钮,在一个控件组 ( div class="ui-block-b" data-role="controlgroup" data-type="horizontal"
) 中。
虽然当元素在静态页面中时按钮呈现完美,但如果我尝试将它们动态地插入页面中,它们会呈现不正确。下面是我的代码(此处为 jsfiddle )。我错过了什么?
DOMElement += '<li>';
for (i = 0 ; i < length ; i++) {
if (typeof systemArray[i] !== 'undefined') {
DOMElement += '<fieldset class="ui-grid-a"> <div class="ui-block-a" style="width:60%;"> <h2 id="'
DOMElement += "system" + systemArray[i].name;
DOMElement += '">';
DOMElement += systemArray[i].name;
DOMElement += '</h2>';
DOMElement += '</div>';
DOMElement += '<div class="ui-block-b" data-role="controlgroup" data-type="horizontal" style="width:30%;">';
DOMElement += '<a href="#" class="deletebutton" data-icon="delete" data-role="button" id="';
DOMElement += 'delete|' + systemArray[i].name;
DOMElement += '" data-iconpos="notext">Cancel</a>';
DOMElement += '<a href="#" class="modifybutton" data-icon="gear" data-role="button" id="';
DOMElement += 'modify|' + systemArray[i].name;
DOMElement += '" data-iconpos="notext">Modify</a>';
DOMElement += '<a href="#" class="connectbutton" data-icon="arrow-r" data-role="button" id="';
DOMElement += 'connect|' + systemArray[i].name;
DOMElement += '" data-iconpos="notext">Connect</a>';
DOMElement += '</div>'
DOMElement += '</fieldset>';
}
}
DOMElement += '</li>';
// Needs trigger ('create') to create the icons http://jquerymobiledictionary.pl/faq.html
$("#list").html(DOMElement).trigger('create');
$("#list").listview("refresh");