6

当 body 方向为 rtl 时,div 的 scrollLeft 属性在不同的浏览器中似乎返回不同的值。

可以在这里看到一个例子 - http://jsfiddle.net/auVLZ/2/

body { direction: rtl; }
div.Container { border: 5px solid #F00; width: 500px; height: 400px; overflow: auto; }    
div.Content { background-color: #00F; width: 900px; height: 380px; }​

<div id="divContainer" class="Container">
    <div class="Content"></div>
</div>
<br />
<input id="showScrollLeft" type="button" value="Show ScrollLeft" />​

$(document).ready(function()
{
    $("#showScrollLeft").click(function(e)
    {
        alert($("div.Container").scrollLeft());
    });
});​

Chrome - 初始值为 400,当滚动条向左移动时为 0。

IE8 - 0 和 400。

火狐- 0 和 -400。

是什么导致了这种差异,如何处理?

编辑:请注意,“常规” scrollLeft 也会发生这种情况 -document.getElementById("divContainer").scrollLeft返回相同的结果。

4

2 回答 2

4

尽管我希望避免这种情况,但我最终还是使用了浏览器检测:

function GetScrollLeft(elem)
{
    var scrollLeft = elem.scrollLeft();
    if ($("body").css("direction").toLowerCase() == "rtl")
    {
        // Absolute value - gets IE and FF to return the same values
        var scrollLeft = Math.abs(scrollLeft);

        // Get Chrome and Safari to return the same value as well
        if ($.browser.webkit)
        {
            scrollLeft = elem[0].scrollWidth - elem[0].clientWidth - scrollLeft;
        }
    }
    return scrollLeft;
}
于 2012-08-08T08:50:59.377 回答
0

浏览器不兼容。试试这个

于 2012-07-24T11:15:11.163 回答