您好,登錄后才能下訂單哦!
本篇文章展示了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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。