stripScripts
stripScripts() -> string
移除字符串中所有的 HTML script
块。
样例
'a <a >link</a><script>alert("hello world!")</script>'.stripScripts();
// -> 'a <a >link</a>'
stripScripts() -> string
移除字符串中所有的 HTML script
块。
'a <a >link</a><script>alert("hello world!")</script>'.stripScripts();
// -> 'a <a >link</a>'