js正则表达式匹配10-12位数字

var danhao_regx = /单号:\d{10}/;
如上代码只能匹配出10位数字
如何能匹配出10-12位的数字?
望大神帮助,灰常感谢。。。
亲,写成这样就可以了var danhao_regx = /单号:\d{10,13}/;