2

有没有办法定义 JQM 用于选择菜单覆盖的偏移量?

其他选项可以通过原型设置,如下所示:

$.mobile.page.prototype.options.addBackBtn   = true;
$.mobile.page.prototype.options.backBtnTheme = "a";

问题描述

jQuery Mobile 确定屏幕的大小并决定如何显示选择菜单的覆盖。不幸的是,这似乎只在不使用固定标题工具栏的情况下才有效,因为 JQM 总是在此处生成顶部偏移量为 30px 的源代码style="left: 741.65px; top: 30px;

没有办法只用 CSS 覆盖它,因为 css 规则的特殊性总是低于样式属性的特殊性!

我不想更改 JQM 源代码,因为我必须在每次发布时再次更改它。而且我不使用未压缩的源。

从 JQM 生成的源代码

<div class="ui-selectmenu ui-overlay-shadow ui-corner-all ui-body-a pop in"
     style="left: 741.65px; top: 30px;">

样本

http://jsfiddle.net/V8AAB/

JQM源代码

这是来自 jQuery Mobile 1.0RC2 的相应代码:

self.menuType = "overlay";

self.screen.height( $(document).height() ).removeClass( "ui-screen-hidden" );

// Try and center the overlay over the button
var roomtop = btnOffset - scrollTop,
    roombot = scrollTop + screenHeight - btnOffset,
    halfheight = menuHeight / 2,
    maxwidth = parseFloat( self.list.parent().css( "max-width" ) ),
    newtop, newleft;

if ( roomtop > menuHeight / 2 && roombot > menuHeight / 2 ) {
    newtop = btnOffset + ( self.button.outerHeight() / 2 ) - halfheight;
} else {
    // 30px tolerance off the edges
    newtop = roomtop > roombot ? scrollTop + screenHeight - menuHeight - 30 : scrollTop + 30;
}
4

1 回答 1

1

建议修复:

.ui-selectmenu { z-index: 1100 !important; } 
于 2011-10-22T02:28:13.833 回答