JS中的jquery事件

这个问题在这里已经有了答案:

  • $(document).ready没有jQuery 31个答案

  • 使用DOMContentLoaded。 这里是完整的例子。

    document.addEventListener("DOMContentLoaded", function(event) {
        function FormFill() {
                if {
                    var el1 = document.getElementsByName("FormOption1")[0];
                if(typeof el1 !== 'undefined') {el1 = 1;}         
                    var el2 = document.getElementsByName("FormOption2")[0];
                if(typeof el2 !== 'undefined') {el2 = 2;}  
                }, 100);
            }
        }
        setTimeout(FormFill,5000);
    });
    
    链接地址: http://www.djcxy.com/p/71251.html

    上一篇: Jquery Event in JS

    下一篇: Put getElementById() at the bottom