jQuery Mobile Controlgroup 方向选项
jQuery Mobile是一种基于 Web 的技术,为网页构建了出色的 UI 界面,可用于为可在所有类型的智能手机、平板电脑和台式机上访问的网站制作响应式内容。
在本文中,我们将使用 jQuery Mobile 控制组 方向 选项 添加控制组元素的方向。它的默认值是垂直的。
句法:
以下语法用于使用方向选项初始化控制组。
$( ".selector" ).controlgroup({
direction: "horizontal"
});
获取方向选项。
var direction = $( ".selector" ).controlgroup( "option", "direction" );
设置方向选项。
$( ".selector" ).controlgroup( "option", "direction", "horizontal" );
CDN 链接:添加您在项目中需要的以下 jQuery Mobile 脚本。
示例:此示例演示 jQuery Mobile 控件组方向选项。
HTML
GeeksforGeeks
jQuery Mobile Controlgroup direction Option
输出:
参考: https://api.jquerymobile.com/controlgroup/#option-direction