我可以使用onload函数-Javascript一次显示2个项目吗?

时间:2012-04-14 00:16:17

标签: javascript jquery html onload username

我使用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>

你知道为什么不显示用户名吗? &安培;如果有更好的想法在页面顶部显示名称,如果你提到它们,我真的很感激。

非常感谢:)

2 个答案:

答案 0 :(得分:2)

试试这个:

$('#usernamethename').text(localStorage["username"]);

答案 1 :(得分:2)

这样做

$('#usernamethename').html(localStorage["username"]);