我想創建一個循環來創建許多功能,以便當用戶單擊拇指向上按鈕時,它運行正確的.php文檔。它很好用,當我刪除循環,只給我一個特定的數字,但只要我嘗試使它成爲一個循環,在警報(我)我得到10在第一個循環。Jquery Loop無法正常工作?
var i=1;
while (++i < 10) {
$('#thumbup' + i).click(function() {
var userid = $('#theuser' + i).text();
var url = "_thumbup.php?userid=" + userid;
//alert(url);
$('#thumbup' + i).hide();
$('#thumbdown' + i).hide();
$("#toggle").css("display","block");
alert(i); // Give me 10 on first loop?!?
// get the URL
http = new XMLHttpRequest();
http.open("GET", url, true);
http.send(null);
// prevent form from submitting
return false;
});
}
這就是所謂的封閉:) http://stackoverflow.com/a/111200/2477406 – Ruudt
@Ruudt是的。 –
很好,非常感謝你,我通常在沒有問一個新問題的情況下找到答案,但是現在不可能這樣,儘管這是一個非常簡單的解決方案。謝謝。 – MikeBeaudin87