我试图缩短一些东西,所以我正在制作实现这个的函数
Element.prototype.methodName = function(selector) {
return this.querySelector(selector);
}
当我尝试使用或其他字母或单词时没关系$
,但似乎下划线无法使用它,因为知道下划线_
是有效的变量名。
Element.prototype._ = function(selector) {
return this.querySelector(selector);
}
这样称呼:_('body')
错误信息:ReferenceError: _ is not defined