我试图通过jquery中的每个循环获取无序列表的索引值,我很难得到它。我需要每个循环只有jquery的soltion,请帮忙。
<!DOCTYPE html>< HTML&安培; …
你可以尝试这个,我希望它会有所帮助
$(document).ready(function(){ $('li a').each(function(index){ $(this).text(index + " " + $(this).text()); }); });
this 应该这样做并将新元素添加到页面
this
$(document).ready(function(){ $('li a').each(function(index){ console.log(index, $(this).text()); $(['<h1>',index," ",$(this).text(),'</h1>'].join('')).appendTo('body'); }); });