//去掉html標籤
function
removehtmltab(tab)
//普通字元轉換成轉意符
function
html2escape(shtml) [c];});
}
//轉意符換成普通字元
function
escape2html(str) ;
return
str.replace(/&(lt|gt|nbsp|amp|quot);/ig,
function
(all,t));
}
// 轉成空格
function
nbsp2space(str) ;
return
str.replace(/&(nbsp);/ig,
function
(all, t))
}
//回車轉為br標籤
function
return2br(str)
//去除開頭結尾換行,並將連續3次以上換行轉換成2次換行
function
trimbr(str) /g,
"\r\n\r\n"
);
//限制最多2次換行
str=str.replace(/^((\s| )*\r?\n)+/g,
''
);
//清除開頭換行
str=str.replace(/((\s| )*\r?\n)+$/g,
''
);
//清除結尾換行
return
str;
}
// 將多個連續空格合併成乙個空格
function
mergespace(str)
JS轉換HTML轉義符
去掉html標籤 1 2 3 functionremovehtmltab tab 普通字元轉換成轉意符 1 2 3 functionhtml2escape shtml c 轉意符換成普通字元 1 2 3 4 functionescape2html str returnstr.replace lt g...
JS轉換HTML轉義符
今天在用wangeditor編輯器寫後台管理文章頁,在儲存文章後需要呼叫一次編輯草稿,這時候需要把編輯的內容拿到編輯器中,結果輸出了我的標籤 您好 經過我的console.log data 打沙包 沒錯,我的 被轉義了,因為不轉義的話沒辦法上傳。接下來,就是我從其他地方找來的正則。哈哈哈 去掉htm...
js 轉化為實體符 JS轉換HTML轉義符
去掉html標籤 function removehtmltab tab c 轉意符換成普通字元 function escape2html str return str.replace lt gt nbsp amp quot ig,function all,t 轉成空格 function nbsp2s...