您当前位置:图趣网(Tuquu) >> 网页设计教程 >> 移动前端 >> 浏览设计教程

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

实例如下:

<!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查找联系人的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持图趣网。

[教程作者:佚名]
免责声明:本站文章系图趣网整理发布,如需转载,请注明出处,素材资料仅供个人学习与参考,请勿用于商业用途!
本文地址:http://www.tuquu.com/tutorial/wd351.html
使用phonegap克隆和删除联系人的实现方法
使用phonegap获取设备的一些信息方法
图趣网微信
建议反馈
×