這裡用的是easyui:一個comboxtree。
這裡省略引用css和js庫的代碼(jquery和easyui庫)。
html:
復制代碼 代碼如下:
<input id="cc" class="easyui-combotree" style="width:200px;">
Javascript:
復制代碼 代碼如下:
function getstyle() {
for (var i = 0; i < document.styleSheets.length; i++) {
var rules;
if (document.styleSheets[i].cssRules) {
rules = document.styleSheets[i].cssRules;
}
else {
rules = document.styleSheets[i].rules;
}
for (var j = 0; j < rules.length; j++) {
if (rules[j].selectorText.substr(0, 5) == ".icon")
$('#cc').combotree('tree').tree('append', {
data: [{
id: rules[j].selectorText.substr(1),
text: rules[j].selectorText.substr(1),
iconCls: rules[j].selectorText.substr(1)
}]
});
}
}
}
$(function () {
getstyle();
});
有幾個可能存在的問題:
1.大的項目樣式可能巨多巨大,這種遍歷顯然不可能,需要指定到styleSheets。
2.如果各種大小的圖標可能用easyui-combotree不太合理。
最後通過配置icon生成的菜單效果: