使用jquery更新localstorage

时间:2018-02-22 07:42:41

标签: jquery local-storage

我有本地存储数据,即key =&gt; MOHAN和值=&gt; <table><p>hjjhjh</p></table>我希望将<p>替换为null。 怎么做到这一点?

以下是代码,

var string = localStorage.getItem("MOHAN");
var new_string = remove.replace('<p>','')
localStorage.setItem("MOHAN",new_string);

1 个答案:

答案 0 :(得分:0)

请尝试以下代码段,

 var string = '<table><p>hjjhjh</p></table>';
 var new_string = string.replace(/<p>/g,'')
 new_string = new_string.replace(/<\/p>/g,'');
 console.log( new_string);
 localStorage.setItem("MOHAN", new_string);