gpt4 book ai didi

jquery - 在 JQuery Mobile 中动态填充选择列表

转载 作者:行者123 更新时间:2023-12-01 03:49:12 24 4
gpt4 key购买 nike

我有一个 JQuery Mobile 应用程序。该应用程序有一个带有“选择”元素的页面。元素中的选项需要动态添加。对于我的一生,我不知道如何做到这一点。目前,我正在尝试以下操作:

page.html

<div id="myPage" data-role="page">
<div data-role="header" data-position="fixed">
<h1>Welcome</h1>
</div>

<div data-role="content">
<select name="mySelector" id="mySelector" data-native-menu="false">
<option>Please Choose</option>
</select>
</div>
</div>

page.html.js

$("#myPage").live("pagebeforeshow", function (e, ui) {
for (i=0; i<5; i++) {
$("#mySelector", "#myPage").append('<option value="' + i + '">Option ' + (i+1) + '</option>');
}
});

由于某种原因,我的动态项目不会出现。我做错了什么?

最佳答案

您必须调用:

$('#mySelector').selectmenu('refresh');

关于jquery - 在 JQuery Mobile 中动态填充选择列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10430610/

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