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

Halona ·
更新时间:2024-09-21
· 502 次阅读

实例如下:

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



phonegap

需要 登录 后方可回复, 如果你还没有账号请 注册新账号