2

我使用 onload 函数来显示页面打开的日期,并且它工作正常。但是当我将用户名添加到此函数时,它不会显示任何内容(我希望用户名也显示在页面顶部。)

这是我正在使用的功能:

    window.onload = function () {
    var newDate = new Date();
    $('#dateday').val(newDate.getFullYear() + '-' + newDate.getMonth() + '-' + newDate.getDate()); // This is showed correctly 
    alert(localStorage["username"]); // It's alerted correctly
    $('#usernamethename').val(localStorage["username"]); //This is not displayed.

html代码:

    <h3 id="usernamethename"></h3>
    <input id="dateday" type= text></input>

你知道为什么不显示用户名吗?&如果有任何更好的想法可以在页面顶部显示名称,如果您提到它们,我将不胜感激。

非常感谢 :)

4

2 回答 2

2

做这个

$('#usernamethename').html(localStorage["username"]);
于 2012-04-14T00:22:29.743 回答
2

尝试这个:

$('#usernamethename').text(localStorage["username"]);
于 2012-04-14T00:18:32.040 回答