Commit 7ffc2d8a authored by 李晓兵's avatar 李晓兵

'禁用安卓物理返回键'

parent 4f94472e
...@@ -21,5 +21,15 @@ ...@@ -21,5 +21,15 @@
<body> <body>
<div id="app-box"></div> <div id="app-box"></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
<script>
if (window.history && window.history.pushState) {
// 往历史记录里面添加一条新的当前页面的url
history.pushState(null, null, document.URL)
// 给 popstate 绑定一个方法 监听页面刷新
window.addEventListener('popstate', function(){
alert('请点击左上角返回按钮返回')
}, false) // false阻止默认事件
}
</script>
</body> </body>
</html> </html>
...@@ -153,19 +153,14 @@ vum.$vumPlatform.ready(function () { ...@@ -153,19 +153,14 @@ vum.$vumPlatform.ready(function () {
} }
}) })
if (window.history && window.history.pushState) { /*if (window.history && window.history.pushState) {
// 往历史记录里面添加一条新的当前页面的url // 往历史记录里面添加一条新的当前页面的url
history.pushState(null, null, document.URL) history.pushState(null, null, document.URL)
// 给 popstate 绑定一个方法 监听页面刷新 // 给 popstate 绑定一个方法 监听页面刷新
window.addEventListener('popstate', function(){ window.addEventListener('popstate', function(){
hlsPopup.showLongCenter('请点击左上角返回按钮返回') hlsPopup.showLongCenter('请点击左上角返回按钮返回')
}, false) // false阻止默认事件 }, false) // false阻止默认事件
} }*/
/*document.addEventListener('deviceready', function () {
document.addEventListener('backbutton', function () {
hlsPopup.showLongCenter('请点击左上角返回按钮返回')
}, false)
}, false)*/
vum.$vumPlatform.registerBackButtonAction(function (e) { vum.$vumPlatform.registerBackButtonAction(function (e) {
// let vm = this // let vm = this
......
...@@ -64,14 +64,7 @@ export default { ...@@ -64,14 +64,7 @@ export default {
created: function () { created: function () {
}, },
mounted: function () { mounted: function () {
if (window.history && window.history.pushState) {
// 往历史记录里面添加一条新的当前页面的url
history.pushState(null, null, document.URL)
// 给 popstate 绑定一个方法 监听页面刷新
window.addEventListener('popstate', function(){
hlsPopup.showLongCenter('请点击左上角返回按钮返回')
}, false) // false阻止默认事件
}
}, },
updated: function () { updated: function () {
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment