我正在使用Stupid Fixed Header修復兩個表的標題。爲此,我使用以下腳本。如何在jQuery中做到這一點?
$(document).ready(function(){
$("#table1").fixedHeader({
height: 160,
adjustWidth: function(th){
if($.browser.msie){
return $(th).width()+10;
}
return $(th).width();
}
});
$("#table2").fixedHeader({
height: 160,
adjustWidth: function(th){
if($.browser.msie){
return $(th).width()+10;
}
return $(th).width();
}
});
})
現在的問題是,我寫相同的代碼兩次。一次用於table1,然後用於table2。是否可以只寫一次?
偉大的工作 – 2009-12-04 09:05:33