防止 xxs

function HTMLEncode(html) {
       var temp = document.createElement("div");
       (temp.textContent != null) ? (temp.textContent = html) : (temp.innerText = html);
       var output = temp.innerHTML;
       temp = null;
       return output;
}

  

原文地址:https://www.cnblogs.com/nns4/p/10320886.html