重置页面函数

Original 2019-05-15 17:22:36 295
abstract:重新设置主操作区高度 function resetMainHeight(obj){     var height = parent.document.documentElement.clientHeight - 53;     $(obj).parent(
重新设置主操作区高度


function resetMainHeight(obj){
    var height = parent.document.documentElement.clientHeight - 53;
    $(obj).parent('div').height(height);
}


重新设置页面高度
function resetMenuHeight(){
    var height = document.documentElement.clientHeight - 50;
    $('#menu').height(height);
}


Correcting teacher:查无此人Correction time:2019-05-16 09:29:04
Teacher's summary:完成的不错。jq和js混编,两个都要好好练习。继续加油。

Release Notes

Popular Entries