点击功能完成后,我需要重置功能中的所有数据。出于某种原因,当用户再次点击按钮时,联系人对象中的所有先前信息仍然存在。这是一个phonegap应用程序。感谢
$('#updateBtn').click(function() {
var theContact = navigator.contacts.create({"displayName" : masterName});
theContact.id = document.getElementById("txtID").value; // Update contact by ID
theContact.name = document.getElementById("txtFirst").value;
theContact.note = document.getElementById("txtAlias").value;
alert(masterID); //always returns each contact entry instead of the current object
theContact.save();
clearText();
});