我有一个 javascript 字符串数组,我想在 XUL 面板的下方显示一个在另一个下方。做这个的最好方式是什么?
问问题
105 次
2 回答
1
最好<description>
使用常用的 DOM 方法为所有字符串创建元素:
var strings = ["foo", "bar"];
var container = document.getElementById("panel");
for (var i = 0; i < strings.length; i++)
{
var description = document.createElement("description");
description.textContent = strings[i];
container.appendChild(description);
}
于 2012-04-15T14:01:51.987 回答
0
您可以在 XUL 中以多种方式进行操作,例如 XUL 树、列表、网格等...
https://developer.mozilla.org/en/XUL/listbox http://www.xul.fr/tutorial/xul/listbox.xul https://developer.mozilla.org/en/XUL/tree#A_tree_with_several_columns https ://developer.mozilla.org/en/XUL_Tutorial/Grids
请参阅链接以获取示例代码。
于 2012-04-14T18:18:50.757 回答