javascript code not work in HEAD tag

后端 未结 6 1478
有刺的猬
有刺的猬 2020-11-29 13:18

My webpage has the following code:



    This is test Page

     

        
6条回答
  •  旧巷少年郎
    2020-11-29 14:00

    Your script uses dom element and must run after the dom loaded.

    Wrap your code in a function and call it after dom loaded

    function myfunc(){  
    //code here
    }
    window.onload = myfunc();
    

提交回复
热议问题