JavaScript event [removed] not triggered

后端 未结 8 1383
无人及你
无人及你 2021-02-01 01:15

I\'ve got the following code in a website:

 window.onload = resize;
 window.onresize = resize;

 function resize(){
  heightWithoutHeader = (window.innerHeight -         


        
8条回答
  •  名媛妹妹
    2021-02-01 01:59

    This will be work when you call the "window.onload" next to the function resize()

提交回复
热议问题