//文字列形式に変換された Html 構造は
function ToHtmlString(htmlStr) {
return toTXT(htmlStr).replace(/
|rn|n/g, "
") ;
}
//HTML 構造を表示用の文字列形式に変換します
function toTXT(str) {
var RexStr = /<|>|"|'|&| | /g
str = str.replace(RexStr,
function (MatchStr) {
switch (MatchStr) {
case "<":
return "<";
break;
case ">":
return ">";
case """:
return """; :
return "";
case "&":
return " "; 🎜>break ;
case " ":
return " ";
default:
break;
}
) ;
}