此脚本使用JSON获取我的所有联系人,并在div中显示结果
$("#ID").datepicker({
onClose: removeAria,
showOn: 'button',
buttonImageOnly: false,
})
dateCompliance();// this is what I want to load along with datepicker everytime it loads. this is coming from another datecode.js file.
我想将整个JSON转换为显示在PHP数组中,并回显第一个联系人姓名:
window.location.href = 'gonative://contacts/getAll?callback=contacts_callback';
function contacts_callback(data) {
document.getElementById('demo').innerHTML = JSON.stringify(data);
}
这样,我什么也看不到,但是如果我将$ soJSON更改为演示代码却无法正常工作。
我需要结果来自我的联系人电话,而不是来自演示。