$("#readMain").delegate("span", "click", function() {
var toSend = $(this).text();
$(this).text(function() {return "test1";});
$.post('/render/', {'word': toSend}, function(data){
$(this).text(data);
alert(data); //for testing
});
});
我試圖讓點擊單詞更新。它在第一次正常工作(它變爲'test1'),但在通話後,它不再工作?單擊時更新元素文本
我在做什麼錯
僅供參考,'.delegate'已過時,使用'.on' –