【发布时间】:2016-08-23 10:37:31
【问题描述】:
我正在使用来自here 的 jquerymobile 的 Datebox 插件,还要注意的是我正在使用 timeflipbox 模式。
我的问题是,是否可以移除 Timeflipbox 或 Timebox 左上角的关闭按钮( [X] )。
【问题讨论】:
标签: html jquery-mobile jquery-plugins
我正在使用来自here 的 jquerymobile 的 Datebox 插件,还要注意的是我正在使用 timeflipbox 模式。
我的问题是,是否可以移除 Timeflipbox 或 Timebox 左上角的关闭按钮( [X] )。
【问题讨论】:
标签: html jquery-mobile jquery-plugins
Demeter 的回答对 DateBox 的 Bootstrap 版本很有帮助。对于 jQuery Mobile 版本,CSS 选择器应该是
.ui-datebox-container > a.ui-btn {
display: none;
}
【讨论】:
您可以使用 css 将其删除。只需将 display:none 添加到指定的类即可。
<style type="text/css">
.closer.glyphicon.glyphicon-remove.pull-left{display:none!important}
</style>
【讨论】: