没有默认方法,例如event.stopPropogation()或preventDefault()。 如何停止事件的默认行为(硬件后退按钮)?!
答案 0 :(得分:4)
这是解决方案。
var app = WinJS.Application;
app.onbackclick = function (evt) {
// Code that handles event ...
// Need to return true to cancel the default behavior of this event.
return true;
}