使用phonegap查找联系人
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用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查找联系人的主要内容,如果未能解决你的问题,请参考以下文章
contacts.find 在 Android 4 上不起作用(phonegap)