getItem()
方法在
存储
interface, when passed a key name, will return that key's value, or
null
if the key does not exist, in the given
存储
对象。
var aValue = storage.getItem(keyName);
keyName
DOMString
containing the name of the key you want to retrieve the value of.
A
DOMString
containing the value of the key. If the key does not exist,
null
被返回。
The following function retrieves three data items from local storage, then uses them to set custom styles on a page.
function setStyles() {
var currentColor = localStorage.getItem('bgcolor');
var currentFont = localStorage.getItem('font');
var currentImage = localStorage.getItem('image');
document.getElementById('bgcolor').value = currentColor;
document.getElementById('font').value = currentFont;
document.getElementById('image').value = currentImage;
htmlElem.style.backgroundColor = '#' + currentColor;
pElem.style.fontFamily = currentFont;
imgElem.setAttribute('src', currentImage);
}
注意 : To see this used within a real world example, see our Web 存储演示 .
| 规范 | 状态 | 注释 |
|---|---|---|
|
HTML 实时标准
The definition of 'Storage.getItem' in that specification. |
实时标准 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
getItem
|
Chrome 4 | Edge 12 | Firefox 3.5 | IE 8 | Opera 10.5 | Safari 4 | WebView Android ≤37 | Chrome Android 18 | Firefox Android 6 | Opera Android 11 | Safari iOS 3.2 | Samsung Internet Android 1.0 |
完整支持
存储
clear()
getItem()
key()
removeItem()
setItem()