PhoneGap中文网

标题: jqMobi 中弹出框的使用 [打印本页]

作者: admin    时间: 2014-3-1 14:28
标题: jqMobi 中弹出框的使用
1,引入js

  1. <script type="text/javascript" charset="utf-8" src="./plugins/af.popup.js"></script>
复制代码

2.写对应的方法


  1. <script>
  2.         function showPopup1() {
  3.                 $("#afui").popup("I'm replacing an alert box");
  4.         }

  5.         function showPopup2() {
  6.                 $("#afui").popup({
  7.                         title: "Alert! Alert!",
  8.                         message: "This is a test of the emergency alert system!! Don't PANIC!",
  9.                         cancelText: "Cancel me",
  10.                         cancelCallback: function () {
  11.                                 console.log("cancelled");
  12.                         },
  13.                         doneText: "I'm done!",
  14.                         doneCallback: function () {
  15.                                 console.log("Done for!");
  16.                         },
  17.                         cancelOnly: false
  18.                 });
  19.         }

  20.         function showPopup3() {
  21.                 $("#afui").popup({
  22.                         title: "Login",
  23.                         message: "Username: <input type='text' class='af-ui-forms'><br>Password: <input type='text' class='af-ui-forms' style='webkit-text-security:disc'>",
  24.                         cancelText: "Cancel",
  25.                         cancelCallback: function () {},
  26.                         doneText: "Login",
  27.                         doneCallback: function () {
  28.                                 alert("Logging in")
  29.                         },
  30.                         cancelOnly: false
  31.                 });
  32.         }
  33. </script>
复制代码



作者: 爱哭的鱼    时间: 2014-3-3 21:51
学习了,谢谢分享、、、
作者: 爱哭的鱼    时间: 2014-3-6 23:27
找到好贴不容易,我顶你了,谢了
作者: tianqingle    时间: 2014-5-13 16:36
楼主这个弹出框到平板上就变得很小影响阅读了 有木有解决办法啊
作者: admin    时间: 2014-5-13 16:39
tianqingle 发表于 2014-5-13 16:36
楼主这个弹出框到平板上就变得很小影响阅读了 有木有解决办法啊

改css 看看能解决不
作者: 734086392    时间: 2016-7-6 08:54
不错不错,大神啊




欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2