在这个 codecademy.com 练习中,我应该使用 each 函数来迭代 jQuery 变量,将每个键添加到 id 为 jQueryAttributes 的列表中。我在下面编写了每个函数,但它不正确。我不确定如何使用 jQueryAttributes 将其添加到 id 中。html如下
var jQuery = $;
//iterate over jQuery, adding every key
//to the list with id jQueryAttributes
$.each(jQuery, function(index, value){
$('#'+index).append($('<li></li>').html(value));
});
html
<div id="left">
<h1>$ methods and attributes</h1>
<ul id='jQueryAttributes'>
</ul>
</div>
更新
一件事我忘了提。我应该使用函数的索引为每个列表项分配不同的 id。