如何将JS中的字符串变量设置为另一个字符串中匹配的正则表达式?当我使用Sublime或记事本搜索时,它可以工作,但它不能与JS一起工作。var str = " 261 OSCAR BARRAGAN ALFARO EL 17-05-14 $2832.00";
var result = str.match('\s[0-9]{3}\s')
<script> function a(id) { var table = document.getElementById(id); .... } </script> //trying to rewrite the line "var table = document.getElementById(id)" at here我可以知道这是否可能吗?服务器端有没有类似的代码?