我正在开发一个 Firefox 插件并遇到问题:onClick 事件不适用于 xbl:inherits。其他属性如 value 和 src 效果很好
这是我的代码
捆绑:
<binding id="CF-review">
<content>
<xul:vbox>
<xul:label class="CF-review-url" xbl:inherits="onclick">[more]</xul:label>
</xul:vbox>
</content>
</binding>
脚本:
function onReviewClick()
{
alert("Something");
}
var elem = document.createElement("vbox");
elem.className = "CF-review";
elem.setAttribute("onclick", onReviewClick);
如何为上面的 xul:label 元素设置事件 onclick?