我是phonegap的新手。我想在应用程序中显示对话框。如何显示对话框。我已经搜索了教程,但我找不到。请任何人提供指导或教程以显示对话框。提前致谢... .
问问题
2743 次
4 回答
6
采用
alert("on device ready!!!!");
或者
navigator.notification.alert("PhoneGap is working");
于 2012-09-20T09:41:23.110 回答
3
于 2012-09-26T10:32:06.533 回答
1
我使用绝对定位的 <div> 制作了对话框,它根据对话框是打开还是关闭来显示或隐藏。
在我的 index.html
<div id="hellodlg" class="dialog hidden">
Hello
<button class="closedlg">close</button>
</div>
<button class="openclosedlg">open/close</button>
很有型
<style>
.dialog {
position:absolute;
left:50%; // position in the middle
margin-left: -5em; // move left so that dialog is in the middle
top: 2em;
width: 10em;
height:10em;
background:blue;
border: 1px solid black:
}
.hidden {
display:none;
}
</style>
在使用 jquery 的脚本中(请参阅如何在没有 jquery 的情况下添加类)
<script>
// open dialog
$(".openclosedlg").click(function() { $(".dialog").toggleClass("hidden");});
// listen for button
$(".closedlg").click(function() { $(".dialog").addClass("hidden");});
</script>
于 2012-11-16T01:48:22.323 回答
0
使用JQM
作为一个最适合phonegap伴侣的设计框架。
于 2012-12-21T10:11:51.363 回答