jQuery Mobile 工具栏支持黑名单选项
jQuery Mobile是一种基于 Web 的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。
在本文中,我们将使用 jQuery Mobile 工具栏supportBlacklist选项。此选项的值是一个在工具栏小部件不应显示为固定的平台上返回 true 的函数。此选项的默认值是当 $.support.fixedPosition 的值为 false 时返回 true 的函数。它是布尔类型,默认值为默认黑名单。
句法:
使用指定的 supportBlacklist 选项初始化工具栏:
$( "Selector" ).toolbar({
supportBlacklist: true
});
设置 supportBlacklist 选项:
$( "Selector" ).toolbar( "option", "supportBlacklist", true );
获取 supportBlacklist 选项:
var disabled = $( "Selector" ).toolbar( "option", "supportBlacklist" );
CDN 链接:首先,添加项目所需的 jQuery Mobile 脚本。
示例:此示例描述了 jQuery Mobile 工具栏supportBlacklist选项。
HTML
GeeksforGeeks
jQuery Mobile Toolbar supportBlacklist Option
This is a header toolbar
输出:
参考: https://api.jquerymobile.com/toolbar/#option-supportBlacklist