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