0
我想只使用一次函數,而不是寫入UL LI的每個塊,我需要轉換爲選擇列表。我的工作代碼是http://jsfiddle.net/qqzB5/如何讓我的jQuery更具體?
我試過,但它會遍歷所有的裏的,而不僅僅是特定部分內的一個:
$('.filterSection').each(function(){
$('<select class="locationFilterSelect" />').appendTo(this);
//Create Default option "Select One"
$("<option />", {
"selected": "selected",
"value" : "",
"text" : "Select One"
}).appendTo('select', this);
// Populate dropdown with menu items
$('li', this).each(function() {
var el = $(this);
$("<option />", {
"text" : el.text()
}).appendTo('select', this);
});
});