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
1 Answer
Reset to default 12Your 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
评论列表(0条)