我正在研究 TodoMVC 源代码并遇到了这个助手:
// addEventListener wrapper:
window.$on = function (target, type, callback, useCapture) {
target.addEventListener(type, callback, !!useCapture);
};
怎么了!!useCapture
?
我正在研究 TodoMVC 源代码并遇到了这个助手:
// addEventListener wrapper:
window.$on = function (target, type, callback, useCapture) {
target.addEventListener(type, callback, !!useCapture);
};
怎么了!!useCapture
?