本篇文章展示了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查找联系人的具体代码,文中代码较为详细。如果想了解更多相关内容,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。