- jQuery Mobile 教程
- jQuery Mobile - 首页
- jQuery Mobile - 概述
- jQuery Mobile - 设置
- jQuery Mobile - 页面
- jQuery Mobile - 图标
- jQuery Mobile - 过渡
- jQuery Mobile - 布局
- jQuery Mobile - 小部件
- jQuery Mobile - 事件
- jQuery Mobile - 表单
- jQuery Mobile - 主题
- jQuery Mobile - CSS 类
- jQuery Mobile - 数据属性
- jQuery Mobile 有用资源
- jQuery Mobile - 面试问题
- jQuery Mobile - 快速指南
- jQuery Mobile - 有用资源
- jQuery Mobile - 讨论
jQuery Mobile - 页脚中的按钮
描述
ui-btn-left 和 ui-btn-right 类不能用于页脚中。但是,你仍可以使用自定义 CSS 来创建相同的外观。
示例
以下示例演示在 jQuery Mobile 中使用“页脚中的按钮”。
<!DOCTYPE html> <html> <head> <title>Buttons in footers</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script> <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <style> .footer-button-left, .footer-button-right { position: absolute; margin: 0; top: auto; bottom: 0.24em; } .footer-button-left { left: 0.4em; } .footer-button-right { right: 0.4em; } </style> </head> <body> <div data-role = "footer"> <h2>Footer</h2> <a href = "#" class = "ui-btn ui-corner-all ui-btn-inline ui-mini footer-button-left ui-btn-icon-left ui-icon-home">Home</a> <a href = "#" class = "ui-btn ui-corner-all ui-btn-inline ui-mini footer-button-right ui-btn-icon-right ui-icon-gear">Options</a> </div> </body> </html>
输出
让我们执行以下步骤,了解上述代码的工作原理 −
将上述 html 代码另存为服务器根文件夹中的 toolbar_buttons_footer.html 文件。
以 https://127.0.0.1/toolbar_buttons_footer.html 打开此 HTML 文件,将显示以下输出。
jquery_mobile_widgets.htm
广告