我有本地存储数据,即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);
答案 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);