Difference between “click” and onclick

前端 未结 3 1090
无人及你
无人及你 2020-12-10 16:24

What is the difference between click in

document.getElementById(\"myBtn\").addEventListener(\"click\", displayDate);    

and onclick in

3条回答
  •  借酒劲吻你
    2020-12-10 17:06

    $("#profile-register #submit").click(function (e) {
            e.preventDefault();
            console.log("I executed")
        })
    

    successfully prevent the default the behavior,but code below can't

    $("#profile-register #submit").onclick=function (e) {
            e.preventDefault();
            console.log("I executed")
        }
    

    it redirect the form with parameter,you can see it in the URL frame above

提交回复
热议问题