$.mobile.loading
是否可以在 jQuery 移动对话框中拥有一个由 调用的加载微调器,并使其相对于该对话框的位置?
问问题
484 次
1 回答
0
这是不可能的,但你可以用一种 hacky 的方式来做到这一点:
在
pageinit
对话框中,克隆<div/>
with.ui-loader
类。var loader = $(".ui-loader").clone();
然后将其添加到我们的对话框中,如下所示:
$page.find('[data-role="content"]').html(loader); //$page is the dialog
创建一个名为
.ui-loader-altered
并添加position:relative
到它的类。将类添加到对话框内的加载器。这将使加载程序留在对话框中。$page.find(".ui-loader").addClass("ui-loader-altered");
既然你有了对话框,为什么不显示呢?
$page.find(".ui-loader-altered").show();
完整代码:
$(document).on("pageinit", "#second", function () {
$page = $(this);
$(this).on("click", "#show", function () {
//clone
var loader = $(".ui-loader").clone();
//add to dialog
$page.find('[data-role="content"]').html(loader);
//add class which makes dialog position relative to div
$page.find(".ui-loader").addClass("ui-loader-altered");
//show it up
$page.find(".ui-loader-altered").show();
})
});
演示:http: //jsfiddle.net/hungerpain/P2XJt/3/
于 2013-07-31T19:40:21.197 回答