我正在学习Chrome扩展程序,并在其中创建了一个示例选项页面,并使用 options.js
中的代码在localStorage中存储输入值localStorage['refresh_rate'] = document.getElementById('refresh_rate').value;
这正在使用options.html页面,它正在接收localstorage中的值,但是当我试图在扩展中获得相同的值时,它会给出未定义的值。
我写道:
alert(localStorage['refresh_rate']);
它正在提醒文字 - 未定义 有没有其他方法可以获得该值?
请注意:我已经允许使用下面的行
在manifest.json中存储"permissions": [
"storage"
]