str.escapeHTML()
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
🔰 JS ⟩ Types ⟩ String ⟩ methods
👉 see: encodeURI() ⭐️
💾 程式:codepen ⟩ escapeHTML() ⭐️
// ⭐️ escapeHTML()
export function escapeHTML(str){
return new Option(str).innerHTML;
}
// ⭐️ str.escapeHTML()
String.prototype.escapeHTML = function(){