我正在使用以下腳本來滾動頁面時修復了我的菜單。滾動功能使左側收縮
var num = 5;
$(window).bind('scroll', function() {
if ($(window).scrollTop() > num) {
$('.scroll').css({'position':'fixed', 'top':'0px'});
} else {
$('.scroll').css({'position':'', 'top':''});
}
});
我正在使用此腳本的表。請參閱Jsfiddle。 向下滾動時,該標題將收縮至左側。
爲什麼發生這種情況,我該如何解決? 它應該支持主流瀏覽器(不是IE)。
那是因爲你還沒有設置左,你需要,如默認值是0(左邊框)。 – lshettyl
@LShetty我沒有得到你 – KarSho
你可以看到這一點,使只對表身 http://stackoverflow.com/questions/17067294/html-table-with-100-width-with-滾動vertical-scroll-inside-tbody – Jala