jquery 绑定事件前先解除事件绑定

$("#id").unbind("click").click(function(e){

  //处理

});

防止多次绑定,重复执行。

原文地址:https://www.cnblogs.com/ckui/p/6636514.html