javascript - How to save to localStorage from textarea? - Stack Overflow

I am trying to save an email entered to textarea in localStorage. I see the placeholder "your gmai

I am trying to save an email entered to textarea in localStorage. I see the placeholder "your gmail address" when I load the page, but when I enter a value and click "save" nothing happens. I don't see the alert or the console verifying that text is saved. What am I doing wrong?

<html>
<head><title>Extension Options</title></head>
<body>
<textarea id="user" style="margin-bottom: 4px; width: 250px; height: 20px">
</textarea><br />
<button id="save">Save</button>
<!--<button id="save">Clear</button>-->

<script type="text/javascript">

//check if "user" is in localStorage

if (localStorage["user"])
{
    var user = localStorage["user"] ;
    document.getElementById("user").value = user ;
    alert("you are already a user")
}
else
{
    document.getElementById("user").placeholder = "your gmail address" ;
    console.log("user no found in localStorage")
}

//save entered gmail address
document.getElementById("save").addEventListener
{
    "click", function ()
    {
        var user = document.getElementById("user").value ;
        //localStorage["user"] = user ;
        localStorage.setItem("user", user) ;
        alert("gmail id saved") ;
        console.log("gmail id saved")
    } , false
}

</script>
</body>
</html>

I am trying to save an email entered to textarea in localStorage. I see the placeholder "your gmail address" when I load the page, but when I enter a value and click "save" nothing happens. I don't see the alert or the console verifying that text is saved. What am I doing wrong?

<html>
<head><title>Extension Options</title></head>
<body>
<textarea id="user" style="margin-bottom: 4px; width: 250px; height: 20px">
</textarea><br />
<button id="save">Save</button>
<!--<button id="save">Clear</button>-->

<script type="text/javascript">

//check if "user" is in localStorage

if (localStorage["user"])
{
    var user = localStorage["user"] ;
    document.getElementById("user").value = user ;
    alert("you are already a user")
}
else
{
    document.getElementById("user").placeholder = "your gmail address" ;
    console.log("user no found in localStorage")
}

//save entered gmail address
document.getElementById("save").addEventListener
{
    "click", function ()
    {
        var user = document.getElementById("user").value ;
        //localStorage["user"] = user ;
        localStorage.setItem("user", user) ;
        alert("gmail id saved") ;
        console.log("gmail id saved")
    } , false
}

</script>
</body>
</html>
Share Improve this question asked Oct 25, 2011 at 16:23 ZeynelZeynel 13.5k31 gold badges103 silver badges148 bronze badges 2
  • 1 You should definitely see a syntax error in the console. – pimvdb Commented Oct 25, 2011 at 16:38
  • @pimvdb, yes, you right, I tried it again with curly braces and I saw the error message in the console. – Zeynel Commented Oct 25, 2011 at 17:06
Add a ment  | 

1 Answer 1

Reset to default 12

Your addEventListener function is being used incorrectly. It should be used like this:

document.getElementById("save").addEventListener("click", function ()
    {
        var user = document.getElementById("user").value ;
        //localStorage["user"] = user ;
        localStorage.setItem("user", user) ;
        alert("gmail id saved") ;
        console.log("gmail id saved")
    } , false);

MDN docs on element.addEventListener

Working demo with your code

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743655238a4485257.html

相关推荐

  • javascript - How to save to localStorage from textarea? - Stack Overflow

    I am trying to save an email entered to textarea in localStorage. I see the placeholder "your gmai

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信