if ((urlStr.indexOf('t='))!=-1)
{
var pat = /t=(\d+)m(\d+)s/;
pat.exec(urlStr);
alert (RegExp.$1);
alert (RegExp.$2);
}
案例 1:http://localhost/proc1/commit.php&t=1m13s
返回 1 和 13 -> 好的
案例 2:http://localhost/proc1/commit.php&t=13s
返回空白和空白 -> 不好
预期结果 0 和 13
我该如何更改我的正则表达式?