美文网首页
2020-09-06 前端JS和jQuery事件

2020-09-06 前端JS和jQuery事件

作者: 外腾湖南 | 来源:发表于2020-09-07 09:04 被阅读0次

事件有三种形式:

onclick

onclick=function(){}

addEvent

除此之外jQuery还有变通形式:As of jQuery version 1.7, the on() method is the new replacement for the bind(), live() and delegate() methods. This method brings a lot of consistency to the API, and we recommend that you use this method, as it simplifies the jQuery code base.

$("p").click(function(){

  alert("The paragraph was clicked.");

});

$("p").on("click", function(){

  alert("The paragraph was clicked.");

});

相关文章

网友评论

      本文标题:2020-09-06 前端JS和jQuery事件

      本文链接:https://www.haomeiwen.com/subject/illkektx.html