我需要爲表中類別爲「tdresult」的錨元素設置唯一的數字rel屬性。我試圖設置它們在循環中,但我不是很擅長Javascript,並且可能不會出現循環。如何使用Mootools設置循環中元素的唯一ID?
$$('.tdresult').each(function(chooseClass) {
var ellen=chooseClass.getElements('a').length;
var eli=chooseClass.getElements('a').each(function(el){
for (i=0; i<ellen; i++){
var elic=el.set('rel',i++); //trying to set numeric ids for anchor els (from 0 to //max (ellen)
}
});
chooseClass.addEvent('mouseenter', function(el) {
infoGet(1,uniqueid); // function that sets the ajax request using unique id from loop
});
});
誰能告訴我如何做到這一點?
$$( 'tdresult A ')。每個(函數(EL,UID){ el.addEvent(' 的mouseenter',函數(){ infoGet(1 ,uId + 1); }); }); //這個很好,但我需要在所有td區域設置鼠標懸停,而不僅僅是爲了它的孩子(a) – moogeek 2009-10-28 08:25:01
要是你需要一個特定的ID或更糟。 – 2009-10-28 08:37:36
要爲ajax所要求的元素設置特定的id非常困難,因爲它們超過9000個:(但無論如何,非常感謝你!我已經解決了我的問題50% – moogeek 2009-10-28 09:55:44