1 事件绑定
$("#myElement").on("click mouseenter", function() {
});
$("#myElement").on("click.myNamespace", function() {
});
2 事件代理
$("#parentElement").on("click", ".childElement", function() {
});
3 事件对象
$("#myElement").on("click", function(event) {
console.log("触发事件的元素是:" + event.target);
event.preventDefault();
});
4 常见事件
$("#myButton").on("click", function() {
});
$("#myElement").on("mouseenter", function() {
});
5 解绑事件
$("#myElement").off("click");
$("#myElement").off(".myNamespace");
6 自定义事件
$("#myElement").trigger("customEvent");
$("#myElement").on("customEvent", function() {
});