次のことを書くたびに各関数クラスを書くことができません、それは私にエラーを与えるのはなぜですか?
<script>
var addLi = function($li) {
var $uls = $('ul');
$.each($uls, function(index, ul) {
// If this ul has less than 5 li's
// then add the li here
if ($(this).find('li').length < 5) {
$(this).append($li);
// exit the for loop since we have placed this li
return;
}
}
};
</script>