如何在xul中创建自己的后退/前进按钮?

时间:2012-12-21 04:41:03

标签: javascript browser firefox-addon xul xulrunner

尝试在xul中创建我自己的后退/前进按钮。

我的代码:

<label value=" ❀ Back " id="back_button" style="-moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px; border-radius: 20px;background:#C93E1D; width:100px; color:white;" onclick="history.go(-1);"></label>

还尝试了xul按钮的history.back()onclick。但什么都没发生。

<button label="back" oncommand="history.back();"/>

1 个答案:

答案 0 :(得分:2)

这对我有用:

document.getElementById("main-browser").webNavigation.goBack();