Whats the difference between onclick and onsubmit?

后端 未结 4 941
执笔经年
执笔经年 2021-01-01 17:44

It\'s not like I haven\'t googled it... But still I couldn\'t understand when onsubmit is used and when onclick is used?

4条回答
  •  礼貌的吻别
    2021-01-01 18:12

    OnSubmit is used on a form, and indicates that the information is to be submitted to the server at this point unless you return false.

    OnClick is used on anything, and indicates that it was clicked, offering no other context to the intention of the event at all.

提交回复
热议问题