简体   繁体   中英

$(elem).html() = localStorage does not work

My options.html:

<!doctype html>

<html>
<head>
    <title>Item Notifier v1.0.2</title>
    <link href="style.css" rel="stylesheet" type="text/css">
    <script src="jquery.js"></script>
    <script src="options.js"></script>
</head>
<body>
    <h1>Cowboy's Item Notifyer</h1>
    <label>Last updated hat:<h2 id='itemname'>[ loading... ]</h2></label>
</body>
</html>

Then my options.js:

$(document).ready(function() {
    $('#itemname').html() = localStorage.mostRecentHat;
});

It's supposed to change the innerHTML from [ loading... ] to the value of mostRecentHat but it turns up the value as undefined and doesnt change the innerHTML.

You should pass the value as a parameter to html method.

$(document).ready(function() {
    $('#itemname').html(localStorage.mostRecentHat);
    // document.getElementById('itemname').innerHTML = localStorage.mostRecentHat;
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM