我正在尝试将选项标签值保存到本地存储。将其值保存到本地存储后,我希望能够将选项标签设置为用户选择的选项。我已经尝试了以下操作,但我只能保存该值。我无法将选择标签更改为用户选择的值。
<select name="fruit" id="fruit">
<option value="1">Apple</option>
<option value="2">Guava</option>
<option value="3">Mango</option>
<option value="4">Grapes</option>
</select>
document.getElementById("fruit").onchange = function() {
localStorage.setItem('fruit', document.getElementById("fruit").value);
}
if (localStorage.getItem('fruit') === "Guava") {
document.getElementById("fruit").setAttribute('Selected', 'Guava');
}