当 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
返回相同的结果。