yes, I know that with `[funcname].caller` or `arguments.callee.caller` you can get a reference to the function which called the actual function, BUT - the following scenario:
`Test`
Inside of `something()` I have no chance to get to the A-Tag, even with the `.caller` reference, unless I alter the script in the following way:
`Test`
With "this" I'm passing my A-Tag reference to the function but is there a way to get the A-Tag reference without explicitly passing it to the function?
以上就是JavaScript: Get Function calling HTML-Object的详细内容,更多请关注web前端其它相关文章!