请问结果中为什么第一个为FALSE?
字符串:
模式:/
functionc1()
{
re=newRegExp("^d*$");
alert(re.test("123456"));
}
functionc2(form)
{
re=newRegExp(form.t2.value);
alert(re.test(form.t1.value));
}
functionc3()
{
re=/^d*$/;
alert(re.test("123456"));
}
c1();
c2(document.form1);
c3();
第一个应为re=newRegExp("^d*$");
在引号中需要转义
第一双有双引号,双引号要加多一次转义的,第二个没有,这就是区别