0
這裏獲取私人價值是我的代碼從jQuery函數
(function ($) {
var Test = (function() {
function Test(element) {
this.element = element;
this.getValue = "";
this.init();
}
return Test;
})();
Test.prototype.init = function() {
this.getValue = $(this.element).val();
};
$.fn.Test = function() {
// iterate and reformat each matched element
return this.each(function() {
return new Test(this);
})
};
})(jQuery);
return this.each
旨在保護原型功能
我怎樣才能得到this.getValue
當我打電話$("#a").Test()
?
你想去哪兒走呢? – Scimonster 2014-10-17 07:50:22
$(「#a」)。Test()。getValue像這樣,不起作用 – WinKi 2014-10-17 07:53:30
它會在沒有'this.each'的情況下工作,你爲什麼要循環呢? – Spokey 2014-10-17 08:10:09