以下是在 JS 中事件绑定的三种方式。
1. HTML onclick attribute
<button type="button" id="upload" onclick="upload_file();">
原文: http://www.w3school.com.cn/jsref/jsref_events.asp
2. jQuery .on()
$(node).on("change", function(e) {
});
$(node).on("click", function(e) {
});
原文: http://api.jquery.com/on/
3. jQuery .change() 仅适用于 text field / textarea / select
原文: http://www.w3school.com.cn/jquery/event_change.asp