「JavaScript入門」htmlエスケープ処理をするサンプル
JSコード
function htmlEscape(content){
return content.replace(/[<>"&]/g, function(match, pos, originalText){
switch(match){
case “<“: return “<";
case “>":return “>";
case “&":return “&";
case “\"":return “"";
}
});
}