最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin2浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论