在我的頁面中,我需要將當前變量作爲參數賦予函數AjaxLoader,然後向其中添加選定的類。 但是,當我將它作爲參數傳遞它不起作用。有沒有辦法做到這一點? 我的代碼如下。在jquery中添加這個參數作爲參數
$('a').click(function() {
var current = $(this).find('td');
current.addClass("selected");
AjaxLoader(current);
}
function AjaxLoader(current){
$.ajax({
type: "POST",
url: "test1.php",
success: function(response) {
//this is what I want to do
current.addClass("selected");
}
})
}
您收到了什麼錯誤元素的後裔?在添加課程以查看內容之前,您是否曾嘗試將'current'記錄到控制檯? – slash197 2012-03-22 12:49:39