首页>>技术分享>>html相关>jquery $.on事件

jquery $.on事件

大路 html相关 2023-10-14 194
  $("p").on("click",function(){

    alert("段落被点击了。");

  });





完全版



$(".li").on('click', ".deleteon", function(){

    $(this).parent().remove(); 

})


标签: