做一个<ul>
:
<ul id="stuff"></ul>
设置样式使其可滚动:
#stuff {
height: 200px;
overflow: auto;
}
将物品放入:
var items = ["John", "Jack", "Jill", "James", "Jacqueline", "Jordan", "Joel", "Jay", "Jim"];
$.each(items, function() {
$('#stuff').append($('<li>').text(this));
});
这是一个演示。