我正在构建一个带有弹出窗口的扩展,每次鼠标悬停在弹出选项上时,其元素都是通过函数调用构造的。我能够做到这一点。现在我需要为每个菜单项(在原始弹出窗口内)弹出一个不是动态的弹出窗口。我有这个代码,但它不起作用:
var myMenuPopup = document.getElementById("file-popup4");
for (var m=0; m<localpubliclist.length; m++)
{
var newItem = document.createElement("menupopup");
newItem.setAttribute("label", publicdisplayname[m]);
newItem.setAttribute("id", "public" + m);
var new1 = document.createElement("menuitem");
new1.setAttribute("label","Home");
new1.setAttribute("id", "publichome" + m);
newItem.onclick = function(){
};
newItem.appendChild(new1);
myMenuPopup.appendChild(newItem);
但这不起作用。也就是说,弹出窗口(newitem)无法打开。 有人可以帮我解决问题吗
答案 0 :(得分:0)
您是否尝试过onpopupshowing事件(https://developer.mozilla.org/en/XUL/menupopup#a-onpopupshowing)?