var objs = new Array();
function Foo(a) {
this.a = a
$("#test").append($("<button></button>").html("click").click(this.bar));
}
Foo.prototype.bar = function() {
alert(this.a);
}
$(document).ready(function() {
for (var i = 0; i < 5; i++) {
objs.push(new Foo(i));
}
});
是有可能讓這個一個按鈕被點擊時,jQuery與oop事件函數調用?
它返回對應Foo.a值(從創建按鈕富OBJ)?
請訪問http://stackoverflow.com/faq歡迎SO ... – Reigel 2010-06-04 01:35:01