标签: javascript google-chrome-extension var google-chrome-storage
我正在尝试使用chrome存储中的字符串更新变量item,然后在函数外部使用它。谁能告诉我我做错了什么?
item
var item; chrome.storage.sync.get('myLine', function(data) { item = (data.myLine); }); alert(item);
很抱歉,如果这很明显,我只是在学习,谢谢。