当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Storage setItem()用法及代码示例


setItem()方法用于设置用户指定的存储对象项。该存储对象可以是localStorage对象或sessionStorage对象。

用法:
对于本地存储:

localStorage.setItem(keyname, value)

对于会话存储:


sessionStorage.setItem(keyname, value)

参数:需要两个参数:

  • Keyname:它指定用于获取值的键的名称。
  • value:它指定替换旧值的值。

返回值:一个字符串,表示插入的值。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <!--script for creating new local  
      storage item and retrieve it -->
    <script> 
        
        // Set item in local storage. 
        function createItem() { 
            localStorage.setItem("city", "Gwalior"); 
        } 
  
        function myFunction() { 
            var x = localStorage.getItem("city"); 
            document.getElementById("demo").innerHTML = x; 
        } 
    </script> 
</head> 
  
<body> 
    <h1>Welcome to GeeksforGeeks</h1> 
    <h3>The Storage setItem() Method</h3> 
    <p>Click on button to create a  
      local storage item </p> 
  
    <button onclick="createItem()"> 
      Create local storage item 
  </button> 
  
    <p>Click the button to get the item value:</p> 
  
    <button onclick="myFunction()"> 
      Get the item value 
  </button> 
  
    <p id="demo"></p> 
  
</body> 
  
</html>

输出:

之前:

后:

支持的浏览器:下面列出了DOM setItem()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自ProgrammerAnvesh大神的英文原创作品 HTML | DOM Storage setItem() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。