首页 > 编程 > HTML > 正文

使用phonegap查找联系人的实现方法

2024-08-26 00:19:28
字体:
来源:转载
供稿:网友

实例如下:

<!DOCTYPE html> <html>       <head>         <meta charset="UTF-8">         <title>Database Example</title>           <script type="text/javascript" charset="UTF-8" src="cordova.js"></script>         <script type="text/javascript" charset="UTF-8">             document.addEventListener("deviceready", onDeviceReady, false);               function onDeviceReady() {             }                           function onSuccess(contacts){                 document.write(contacts.length+'contacts found.');                 for(var i=0;i<contacts.length;i++){                     for(var j=0;j<contacts[i].emails.length;j++){                         document.write("Email="+contacts[i].emails[j].email);                     }                 }                 alert('success');             }                           function onError(error){                  alert("Ooops!");             }                           function findContact(){                 var myOptions=new ContactFindOptions();                 myOptions.filter="gmail";//过滤                 var myFields=["emails"];//要查询的字段                 navigator.contacts.find(myFields,onSuccess,onError,myOptions);             }                       </script>     </head>       <body>         <button onclick="findContact();">Find Contact</button>     </body>   </html>

以上这篇使用phonegap查找联系人的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VeVb武林网。


注:相关教程知识阅读请移步到HTML教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表