的代碼看起來像這樣的JavaScript:訪問嵌套對象
function Scripts() {this.FindById = function (id) {
this.FindById.constructor.prototype.value = function() {
return document.getElementById(id).value;
}}}
var Control = new Scripts();
現在,當我說Control.FindById( 「T1」)值()。我無法獲得textInput(「T1」)的值。
該代碼是...奇怪。 – Pointy