摘要: function HTMLEncode(html) { var temp = document.createElement("div"); (temp.innerText != null) ? (temp.innerText = html) : (temp.textContent = html); 阅读全文
posted @ 2016-12-09 17:48 huangzebin 阅读(304) 评论(0) 推荐(0)