removeItem()
方法在
存储
interface, when passed a key name, will remove that key from the given
存储
object if it exists. The
存储
接口在
Web 存储 API
provides access to a particular domain's session or local storage.
If there is no item associated with the given key, this method will do nothing.
storage.removeItem(keyName);
keyName
DOMString
containing the name of the key you want to remove.
The following function creates three data items inside local storage, then removes the
image
data item.
function populateStorage() {
localStorage.setItem('bgcolor', 'red');
localStorage.setItem('font', 'Helvetica');
localStorage.setItem('image', 'myCat.png');
localStorage.removeItem('image');
}
We can do the same for the session storage.
function populateStorage() {
sessionStorage.setItem('bgcolor', 'red');
sessionStorage.setItem('font', 'Helvetica');
sessionStorage.setItem('image', 'myCat.png');
sessionStorage.removeItem('image');
}
注意 : To see this used within a real world example, see our Web 存储演示 .
| 规范 | 状态 | 注释 |
|---|---|---|
|
HTML 实时标准
The definition of 'Storage.removeItem' in that specification. |
实时标准 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
removeItem
|
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 |
完整支持
存储