Skip to content

Instantly share code, notes, and snippets.

@linx4200
Created May 12, 2018 12:18
Show Gist options
  • Save linx4200/e0f2bb2c2e3f7e1e96823b860e1e4fc9 to your computer and use it in GitHub Desktop.
Save linx4200/e0f2bb2c2e3f7e1e96823b860e1e4fc9 to your computer and use it in GitHub Desktop.
装饰器模式
const decorator = (input, fn) => {
const input = document.getElementById(input);
if (typeof input.onclick === 'function') {
const oldClickFn = input.onclick;
input.onclick = () => {
oldClickFn();
fn();
}
} else {
input.onclick = fn;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment