How to execute JavaScript after page load?

前端 未结 6 846
我寻月下人不归
我寻月下人不归 2020-12-10 11:23

I would like to execute a JavaScript function after the page was loaded. At the moment I have a commandButton and everything works fine. However it would be more comfortable

6条回答
  •  一整个雨季
    2020-12-10 11:38

    Include (at the bottom of your page) jQuery library within your and then use $(document).ready as usual:

    
    ...
    
    
    
    

提交回复
热议问题