Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的 ul 控制
<ul id="basket" class="big-menu"> <li></li> <li></li> <li></li> <li></li> </ul>
我使用此代码删除所有 li ->$("#basket").find('li').remove().end(); 它们已被删除,但在触碰 Phonegap 应用程序中的屏幕之前不要刷新屏幕。
$("#basket").find('li').remove().end();
我们如何解决这个问题?
谢谢。
尝试
$( '#basket' ).listview('refresh');