Chrome的offset()返回选项的空值

时间:2013-03-12 09:53:47

标签: jquery google-chrome firefox

我无法计算选项中选项的偏移位置:

<select multiple="true">
    <option>asdf</option>
    <option id="bar">qwer</option>
</select>

$("#bar").offset()

Chrome返回(任何jQuery版本,如1.7.2,1.9测试):

{top: 0, left: 0} 

FF返回:

{top: 26, left: 9}

我需要像FF一样的位置。 Chrome有解决方法吗?

http://jsfiddle.net/YrRLx/

2 个答案:

答案 0 :(得分:2)

啊......我能想到的一个解决方案是用ul对象替换select,并附加事件处理程序以将select select同步到ul。在li元素上调用.offset()可以在FF和Chrome上按预期工作。

因此,如果单击li元素,它将更新其背景颜色并更新隐藏选择的选定值。这样,当提交表单时,会发送正确的值。

http://jsfiddle.net/hqYqh/

HTML:

<select id="mySelect" multiple="true">
    <option>2011</option>
    <option>2012</option>
    <option>2013</option>
    <option>2014</option>
    <option>2015</option>
    <option>2016</option>
    <option>2017</option>
    <option>2018</option>
    <option>2019</option>
</select>

CSS:

ul.select {
    display: inline-block;
    border: 1px solid black;
    list-style: none;
    margin: 0;
    padding: 2px;
    height: 80px;
    overflow: auto;
    width: 50px;
}

ul.select li {
    background-color: none;
    cursor: pointer;
}

ul.select li.selected {
    background-color: skyblue;
}

JS:

var $select = $('#mySelect');
var $ul = $('<ul class="select">').on('click', 'li', function() {
    $(this).parent().find('li').removeClass('selected');
    $(this).addClass('selected');
    $select.val($(this).text()).change();
});

$select.find('option').each(function() {
    var $li = $('<li>').text($(this).text());
    $ul.append($li);
});

$select.hide().after($ul);

$select.change(function() {
    alert('Offset of ' + $(this).val() + ' is ' + JSON.stringify($('li.selected').offset()));
});

EDITED

所以,我尝试了另一种方法,遵循Huangism的建议,使用select元素的offset()和scrollTop()。

唯一不可用的是选项元素的高度。所以我试着估计使用font-size,但它并不完美,我不得不在Chrome上添加幻数3来获得精确的偏移量。如果你能算出选项元素的高度,你就不必处理上面的所有ul / li业务。

这是:

http://jsfiddle.net/hqYqh/2/

optionOffset = function($option) {
    var i = $option.index();
    var h = Number($option.css('font-size').replace(/px/, '')) + 3; // Cannot get the height of the option element :(
    var $select = $option.parent();
    var offset = $select.offset();
    offset.top += i*h - $select.scrollTop();
    return offset;
}

答案 1 :(得分:0)

我会说chrome因为该选项不可见而返回0,因此无法计算顶部。这可能发生在safari中,因为它是所有webkit浏览器。 我唯一能想到的是你得到选择的偏移顶部然后做一些计算以获得选项的近似顶部。例如,如果某个选项的高度约为10像素,则需要知道所需的选项数量,然后计算出需要添加到选择顶部的像素数。