gpt4 book ai didi

jquery - 从数据库获取内容后,如何在 jquery mobile 中创建可折叠的动态内容?

转载 作者:行者123 更新时间:2023-12-01 05:58:21 25 4
gpt4 key购买 nike

我在数据库中有一些值。我想基于它构建一个可折叠的 ListView 。如何通过添加所有 CSS 属性来创建 ListView ?请解答我的疑问。

最佳答案

更多的实现细节可能会是一个很好的奖励:)

但是如果我理解正确的话,你可以根据 jQuery Mobile 文档这样做:
http://jquerymobile.com/demos/1.2.0/docs/lists/docs-lists.html

// This is your HTML list
<ul data-role="listview">
<li><a href="acura.html">Acura</a></li>
<li><a href="audi.html">Audi</a></li>
<li><a href="bmw.html">BMW</a></li>
</ul>

// This is where you fetch data from database and add them to list
function addToList (listId) {
var list = document.getElementById(listId);

// Iterate over items found in database here and add them to DOM
for ( var i = 0 ; i < dataSource.length ; i += 1 ) {
liElem = document.createElement('li');
liElem.textContent = dataSource[i];
list.appendChild(liElem);
}
// Refresh the list
$(list).listview('refresh');
}

简单演示:
http://jsfiddle.net/dR7fx/1/

关于jquery - 从数据库获取内容后,如何在 jquery mobile 中创建可折叠的动态内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13274007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com