1

试图在 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();"/>
4

1 回答 1

2

这对我有用:

document.getElementById("main-browser").webNavigation.goBack();
于 2012-12-21T10:23:06.820 回答