ユーザーがログインしたら、ユーザー名を HTML5 ローカル ストレージに設定します。次のページの上部ツールバーにユーザー名を設定したいのですが、何らかの理由で の後のテキストが変更されません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');
};
}
編集: