Created
May 12, 2018 12:18
-
-
Save linx4200/e0f2bb2c2e3f7e1e96823b860e1e4fc9 to your computer and use it in GitHub Desktop.
装饰器模式
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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