我想用我的父函數有一個值。這可能是一個愚蠢的問題,但我一直無法找到如何做到這一點的直接教程。使用原型在Javascript中繼承
我知道,在使用原型有可能
function handler (selector) {
return selector;
}
Object.prototype.alertLine = function() {
alert(this);}
handler('hello').alertLine();
,仍然收到警報。但我想知道是否有指定的父的功能,例如對象,刺痛,數
function handler(selector) {
if (typeof(selector) == 'string'){
return String(selector);
}
if (typeof(selector) == 'number') {
return Number(selector);
}
if (typeof (selector) == 'object') {
return Object(selector);
}
}
handler.prototype.alertLine = function() {
alert(this);
}
handler('hello').alertLine();
我不介意Handler
爲對象的方式或者不是唯一的問題,如果我傳遞值使用這種方法。
謝謝你提前。