0
我使用的是一個名爲Perfect-Scrollbar的小jQuery腳本。到目前爲止這麼好,但是當我在if 8 - 11中使用它與iframe滾動鼠標滾輪失敗?在IE瀏覽器中通過iframe滾動鼠標滾輪失敗8-11
Firefox,Safari,Chrome或Opera工作正常。
在我使用這個:
<link href="src/perfect-scrollbar.css" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="src/jquery.mousewheel.js"></script>
<script src="src/perfect-scrollbar.js"></script>
<style>
.contentHolder {
position: relative;
margin: 0px auto;
padding: 0px;
width: 300px;
height: 480px;
overflow: hidden;
}
.contentHolder .content {
background:;);
width: 300px;
height: 500px;
}
.spacer {
text-align:center
}
</style>
<script>
jQuery(document).ready(function ($) {
"use strict";
$('#Default').perfectScrollbar();
});
</script>
And in the body:
<div id="Default" class="contentHolder"><iframe src="test.php" scrolling="no" width="100%" height="1550px" frameborder="0">
<p>Your browser does not support iframes.</p>
</iframe>
<div class="content">
</div>
</div>
我怎樣才能得到它工作在IE?