Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
应用程序的特定页面,我想禁用后退按钮,我想使用黑莓菜单。
如何禁用黑莓上的后退按钮?
你会想要捕获 Back 键事件,然后相应地处理它,就像这样......
function trapForBackKey() { blackberry.system.event.onHardwareKey(blackberry.system.event.KEY_BACK, handleBack); } function handleBack() { alert("handle back button"); }
在您的情况下,您可能只想简单地“返回 false;” 在handleBack 函数中。