reg exp - search() [duplicate]
Possible Duplicate:
How do you pass a variable to a Regular Expression Java开发者_开发问答Script?
how to write a variable into a reg exp pattern?
here the pattern always is /value/i
var value = inp.val();
if(search_list[key].search(/value/i) >= 0) alert('ok');
Instead of using the implicit literal syntax you could change to be explicit.
new RegExp(value, "i")
精彩评论