仅在使用 iframe 加载内容时,我才在 FireFox 中遇到 slimScroll / jQuery UI 问题。该代码在所有其他浏览器中都可以正常工作。
如果您正常加载 iframe,它可以正常工作。如果您将其加载为隐藏以 (.hide() 或 display:none;) 开头,它仍会加载,但将不会显示 slimScroll 可拖动栏(仅存在轨道)。
我认为这是一个 FireFox 滚动问题,或者可能是一个 jQuery UI 可拖动问题。无论哪种方式,我都无法弄清楚。
放入父页面的脚本(parent.html):
$(document).ready(function () {
var tip = $('<div id="tip" style="position:absolute;top:90px;left:190px;height:120px;' + 'width:275px;border:1px solid grey;z-index:2147483647;overflow:hidden;">' + "<iframe frameborder='0' scrolling='no' src='content.html' width='275px' height='120px' id='myiframe' type='content' style='display:block;visibility:visible'></iframe>" + '</div>');
$('body').prepend(tip);
$('#showtip').click(function (event) {
$('#tip').show();
});
$('#tip').hide(); //comment this line out and it works correctly...
});
父页面还有一个显示 iframe 的链接:
<a href="#" id="showtip">Click to Show Iframe</a>
内容页面脚本(content.html):
$(document).ready(function () {
$('#scroll').slimScroll({
height: 95,
railVisible: true,
alwaysVisible: true,
allowPageScroll: false
});
});
content.html 的虚拟内容:
<div id="scroll">This is the iframe content area <p>This is the iframe content area</p> p>This is the iframe content area</p> <p>This is the iframe content area</p> </div>
需要的 JS 参考资料:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.23/jquery-ui.js"></script>
<script type="text/javascript" src="https://raw.github.com/rochal/jQuery-slimScroll/master/slimScroll.min.js"></script>
就是这样。