String.stripScripts - Prototype JavaScript 框架

Xunxin Prototype API

stripScripts

stripScripts() -> string

移除字符串中所有的 HTML script 块。

样例

'a <a >link</a><script>alert("hello world!")</script>'.stripScripts(); 
// -> 'a <a >link</a>'