var buttom = document.querySelector("button") buttom.onclick = function(){ navigator.app.exitApp(); }报错5.html:146 Uncaught TypeError: Cannot read properties of undefined (reading 'exitApp')
时间: 2024-03-23 09:38:07 浏览: 109
ButtomProTest_变色buttom_
这个错误同样是因为在代码中使用了navigator.app.exitApp(),然而该方法只在Cordova/PhoneGap等混合移动应用开发框架中才能使用,而不是在web应用中使用。因此,你需要将代码修改为:
```
var button = document.querySelector("button");
button.onclick = function() {
window.close();
};
```
这样就可以在单击"button"按钮时关闭窗口了。
阅读全文