- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 HTML5+Jquery 移动应用程序,我使用 PhoneGap 将 Web View 转换为 native android 应用程序,我编写了以下代码以退出移动应用程序。但是这段代码没有退出应用程序。请帮我解决这个问题。
jQuery :
<script type="text/javascript">
$(document).on("pageinit", "#home", function (event) {
$(document).on('click', '#exit', function (e) {
if ( $('.ui-page-active').attr('id') == 'home') {
navigator.app.exitApp();
} else {
history.back();
}
}, false);
});
</script>
HTML
<div data-role="footer" data-position="fixed">
<a href="#" data-icon="back" class="ui-btn-left" data-transition="flip" data-theme="b" data-role="button" id="exit">Back</a>
<h4> </h4>
<a href="#page1" data-icon="forward" class="ui-btn-right" data-transition="flip" data-theme="b">Next</a>
</div>
最佳答案
最后我发现我错过了什么,我应该在我的应用程序 javascript 库中添加 cordova.js
。
关于android - jQuery 手机 : how exit an application on button click in native android application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20149854/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!