jQuery Mobile Loader textonly 选项
jQuery Mobile是一种基于 Web 的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。
在本文中,我们将学习使用jQuery Mobile Loader textonly Option 。使用此选项,“微调器”图像将在显示消息时隐藏。此选项的默认值为“假”。
句法:
下面指定了使用 textonly 选项初始化加载程序的语法:
$( ".selector" ).loader({
textonly: true
});
or
$.mobile.loading( 'show', {
textonly : true
});
获取 textonly 选项:
var textonly = $( ".selector" ).loader( "option", "textonly" ); or var textonly = $.mobile.loader.prototype.options.textonly;
设置 textonly 选项:
$( ".selector" ).loader( "option", "textonly", true ); or $.mobile.loader.prototype.options.textonly= false;
CDN 链接:添加您的项目所需的以下 jQuery Mobile 脚本。
示例:此示例演示jQuery Mobile Loader textonly 选项。
HTML
GeeksforGeeks
jQuery Mobile Loader textonly Option
输出:
参考: https ://api.jquerymobile.com/loader/#option-textonly