尝试在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();"/>
答案 0 :(得分:2)
这对我有用:
document.getElementById("main-browser").webNavigation.goBack();