Can we change the html or body height using jquery?

前端 未结 4 431
走了就别回头了
走了就别回头了 2021-01-13 11:13

I am trying to run this statement: $(\'body\').height(100); but when I check the height again, I find it unchanged!

Is there any way to change the heigh

4条回答
  •  生来不讨喜
    2021-01-13 11:38

    Try using $('body').addClass('your class name'); or $('body').attr('style', 'height: 100px');

提交回复
热议问题