String.evalScripts - Prototype JavaScript 框架

Xunxin Prototype API

evalScripts

evalScripts() -> [returnedValue...]

执行字符串中包含的所有 script 块的内容。返回一个数组,该数组包含每个 script 执行后返回的值。

样例

'lorem... <script>2 + 2</script>'.evalScripts();
// -> [4] 
'<script>2 + 2</script><script>alert("hello world!")</script>'.evalScripts();
// -> [4, undefined](并且弹出对话框显示 'hello world!')