//没测试,大体这样
var abc = "中国,美国1,美国2,日本,俄罗斯";
abc=abc.replace(/,/g,"\)|\(")
var re=new RegExp("\\("+abc+"\\)")
if(re.test(str))
{
   alert("包含")
}