我在将变量传递到regExp
.
这是我的代码:
project.highlight = function($st,$search) {
re = new RegExp("/\b("+ $search +")\b/g");
return $st.replace(/\b(lorem)\b/g, '<span class="highlight">$1</span>'); // working
return $st.replace(re, '<span class="highlight">$1</span>'); // not working...
}
我究竟做错了什么?