我的选项.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>
然后是我的 options.js:
$(document).ready(function() {
$('#itemname').html() = localStorage.mostRecentHat;
});
它应该将innerHTML 从更改[ loading... ]
为的值,mostRecentHat
但它会将值变为未定义并且不会更改innerHTML。