我正在使用jQuery UI Select Menu,偶尔会遇到一些问题。
它位于用户页面的左上角。使用“下拉/地址”类型,有时(看似随机),下拉菜单会打开UP而不是DOWN,除了第一个选项外,您无法选择其中的任何选项,因为它全部位于屏幕“上方”。
有人知道那里的设置/选项迫使它打开吗?谢谢!
更新.... 11/23/11 1:11 pm est 以下是一些电话代码:
$(function(){
$('select#selectionA').selectmenu({
style:'dropdown',
menuWidth: 220,
positionOptions: {
collision: 'none'
},
format: addressFormatting
});
});
答案 0 :(得分:7)
该插件使用jQuery UI库的 Position 实用程序。如果您查看插件source中的默认选项,则函数positionOptions
中会使用_refreshPosition()
属性:
options: {
transferClasses: true,
typeAhead: 1000,
style: 'dropdown',
positionOptions: {
my: "left top",
at: "left bottom",
offset: null
},
width: null,
menuWidth: null,
handleWidth: 26,
maxHeight: null,
icons: null,
format: null,
bgImage: function() {},
wrapperElement: "<div />"
}
_refreshPosition: function() {
var o = this.options;
// if its a pop-up we need to calculate the position of the selected li
if ( o.style == "popup" && !o.positionOptions.offset ) {
var selected = this._selectedOptionLi();
var _offset = "0 " + ( this.list.offset().top - selected.offset().top - ( this.newelement.outerHeight() + selected.outerHeight() ) / 2);
}
// update zIndex if jQuery UI is able to process
this.listWrap
.zIndex( this.element.zIndex() + 1 )
.position({
// set options for position plugin
of: o.positionOptions.of || this.newelement,
my: o.positionOptions.my,
at: o.positionOptions.at,
offset: o.positionOptions.offset || _offset,
collision: o.positionOptions.collision || 'flip'
});
}
如果没有为position实用程序的'flip'
选项提供,则可以看到它使用默认值collision
。根据jQuery UI文档:
翻转:到另一侧,再次运行碰撞检测以查看它是否合适。如果它不适合任何一个位置,则应将中心选项用作后退 适合:因此元素保持在所需的方向,但重新定位使其适合 无:不进行碰撞检测。
所以我猜你可以在初始化插件时传递一个选项,为碰撞选项定义none
:
$('select').selectmenu({
positionOptions: {
collision: 'none'
}
});
尚未测试,这只是通过查看代码。
修改以下评论
我注意到github上可用的javascript版本和插件网站上使用的版本不一样。我不知道您使用的是哪一个,但网站上使用的那个实际上没有positionOptions
选项,因此在调用selectmenu()
时无效指定它。
似乎不可能直接链接到网站上的javascript,所以这里有一些代码来说明:
defaults: {
transferClasses: true,
style: 'popup',
width: null,
menuWidth: null,
handleWidth: 26,
maxHeight: null,
icons: null,
format: null
}
_refreshPosition: function(){
//set left value
this.list.css('left', this.newelement.offset().left);
//set top value
var menuTop = this.newelement.offset().top;
var scrolledAmt = this.list[0].scrollTop;
this.list.find('li:lt('+this._selectedIndex()+')').each(function(){
scrolledAmt -= $(this).outerHeight();
});
if(this.newelement.is('.'+this.widgetBaseClass+'-popup')){
menuTop+=scrolledAmt;
this.list.css('top', menuTop);
}
else {
menuTop += this.newelement.height();
this.list.css('top', menuTop);
}
}
我能够使用github中的版本首次描述它。在我看来,这是一个更新/完整的版本。除了它几天前更新。
我创建了一个包含两个选项的小测试页面。我已经改变了下面显示的下拉位置。
第一个没有指定碰撞选项,因此使用'翻转'并且下方显示下拉,因为上面没有足够的空间。
第二个指定了'none',即使没有足够的空间,下拉列表也会显示在上面。
我已将小型测试项目放在dropbox上。
答案 1 :(得分:1)
我是Selectmenu插件的维护者。目前有三个版本,请参阅维基以获取更多信息:https://github.com/fnagel/jquery-ui/wiki/Selectmenu
我假设你正在使用我的叉子。碰撞问题可能与此修复https://github.com/fnagel/jquery-ui/pull/255有关,请尝试使用最新版本。
要强制使用滚动条选项maxHeight。