用户登录后,我在 HTML5 localstorage 中设置了他们的用户名。我想将用户名设置到下一页的顶部工具栏中,但由于某种原因,它不会更改changepage
. 页面更改但未插入文本。我究竟做错了什么?
编辑
success: function(data) {
if(data.status == "success") {
$.mobile.changePage("inventory.html");
var username = localStorage.getItem('username');
$("#top_username").html(username);
};
if(data.status == "failed") {
alert('Incorrect Login Information');
};
}
编辑: