我正在尝试读取magento-spConfig创建的全局变量,并根据它创建多个无序列表。我的Javascript代码:
if(typeof spConfig !='undefined'){
if(typeof spConfig[0] == 'undefined' ) {
spConfig[0] = spConfig;
}
var index = 0 , count = spConfig.length?spConfig.length:1;
for( var index = 0 ; index<count;index++) {
if(typeof spConfig != 'undefined' && typeof spConfig[index].config != 'undefined' && typeof spConfig[index].config.attributes != 'undefined') {
for(var attributeID in spConfig[index].config.attributes) {
//alert(attributeID) gives (the number of ul's i want)
var ul = jQuery('<ul id="clone'+attributeID+'"></ul>');
for(var optionID in spConfig[index].config.attributes[attributeID].options) {
var option = spConfig[index].config.attributes[attributeID].options[optionID];
if(typeof option == 'object') {
// alert(option.label); gives the number of li's i want
var li = $('<li>'+option.label+'</li>');
jQuery(".price-info").append(li);
jQuery(".price-info").append(ul);
}
}
}
}
}
}
最后,我希望将Ul附加到我页面上的某些内容中。 上面的代码只是创建空UL。 LI没有填充。
请帮忙。
答案 0 :(得分:5)
您应首先将li
添加到ul
。
ul.append(li);
$('.price-info').append(ul);