34
我行代碼是這樣的:
$(this).parent().parent().children().each(function(){
// do something
});
它運作良好。但我需要多次運行這些線。 所以我創建了一個功能,並通過$(這)參數的函數:
myFunc($(this));
function myFunc(thisObj) {
thisObj.parent().parent().children().each(function(){
// do something
});
}
但這種方式,它沒有工作。
如果使用「this」而不是「$(this)」作爲參數會怎樣? – Rob
您的代碼沒有問題,因此我建議這是其他地方的錯誤。你的意思是什麼,「它沒有用」? –
「沒有用」? –