gpt4 book ai didi

jquery - 在 jquery mobile 弹出窗口中动态创建 jquery mobile ListView

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

这让我发疯,所以希望有人能帮助我:-D

我正在尝试创建一个 jquery 移动弹出窗口,并在弹出窗口中动态创建一个 jQuery 移动 ListView 。但是我不断收到以下错误消息。

未捕获类型错误:无法读取未定义的属性“jQuery19104145257784985006”。

这是我的代码

$('#create').on('click', function () {
//create a div for the popup
var $popUp = $("<div/>").popup({
dismissible: false,
theme: "a",
overlyaTheme: "a",
transition: "pop"
}).on("popupafterclose", function () {
//remove the popup when closing
$(this).remove();
});

//create a title for the popup
$("<ul data-role='listview'/>").trigger("create").appendTo($popUp);

$popUp.popup('open').trigger("create");
});

我在这里创建了一个基本的 jsFiddle http://jsfiddle.net/QA7Dm/

非常感谢任何帮助。

最佳答案

工作示例:http://jsfiddle.net/Gajotres/Ar8N3/

HTML:

<!DOCTYPE html>
<html>
<head>
<title>jQM Complex Demo</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=no; target-densityDpi=device-dpi"/>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page" id="index">
<div data-theme="a" data-role="header">
<h3>
First Page
</h3>
<a href="#second" class="ui-btn-right">Next</a>
</div>

<div data-role="content">
<a href="#" data-role="button" id="create">Create a popup</a>
</div>

<div data-theme="a" data-role="footer" data-position="fixed">

</div>
</div>
</body>
</html>

JS:

$(document).on('pageshow', '#index', function(){ 
$(document).on('click', '#create', function(){
$('<div>').attr({'data-role':'popup','id':'popupBasic','data-dismissible':'false','data-theme':'a','data-transition':'pop'}).appendTo('[data-role="content"]');
$('<div>').attr({'data-role':'header','data-theme':'b','id':'popup-header'}).append('<h1>Header</h1>').appendTo('#popupBasic');
$('<ul>').attr({'data-role':'listview','id':'list-test','data-theme':'a'}).appendTo('#popupBasic');
$('<li>').append('List test').appendTo('#list-test');
$('#index').trigger('pagecreate');
var popup = setInterval(function(){
$("#popupBasic").popup("open",{
overlyaTheme: "a"
}).on("popupafterclose", function () {
//remove the popup when closing
$(this).remove();
});
clearInterval(popup);
},1);
});
});

关于jquery - 在 jquery mobile 弹出窗口中动态创建 jquery mobile ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16427585/

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