如何更改或添加jquery移动装载程序小部件的类?

时间:2017-10-17 10:17:37

标签: jquery css jquery-ui jquery-mobile

根据此处的文档:http://api.jquerymobile.com/loader/#option-classes

有一种方法可以更改或添加Fragment(加载程序小部件的默认类)。

但是我已经尝试过,但不知怎的,它并没有改变任何东西。这是我的演示: https://jsfiddle.net/yusrilmaulidanraji/u1q4xjnt/4/

有什么我想念的吗?

1 个答案:

答案 0 :(得分:0)

不知何故,我已经尝试了其文档中的所有示例,但是类选项仍然无法做任何事情。因此,我最终以编程方式从js更改它。这是我的演示:https://jsfiddle.net/yusrilmaulidanraji/u1q4xjnt/6/

HTML:

<button id="hideLoading"></button>

的CSS:

.abv-loading-text{
  width: 100%;
text-align: center;
}


.ui-loader-custom {
    display: block;
    width: 100%;
    left: 0;
    margin: 0 auto;
}

JS:

var loadingUI =
    "<label class='abv-loading-text'>Wait on this screen until the process is complete.</label>" +
    "<span class='ui-icon-loading'></span>" +
    "<h1></h1>";
$.mobile.loading("show", {
  html: loadingUI,
  textVisible: true
});
$(".ui-loader").addClass('ui-loader-custom');



$("#hideLoading").on("click", function () {
    $(".ui-loader").removeClass('ui-loader-custom');
    $.mobile.loading("hide");
});