如何在用户手机上首次打开Cordova应用程序时获取日期?
答案 0 :(得分:3)
我认为他们只能将数据保存在某些存储,服务器或区域设置中。
一个样本
<script>
function open_window(myid)
{
$("#select_ss").change(function(){
var href = $('option:selected', this).attr('data-href');
window.open(href, '_blank');
})
};
</script>
现在,您可以使用document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
if(window.localStorage.getItem("firstLaunch") == null) {
window.localStorage.setItem("firstLaunch", date().toString());
}
}
请记住,某些操作系统可以删除localstorage,因此如果这是重要数据,请在SQLite或服务器端保存得更好