单项选择题
A.失焦事件B.改变事件C.键盘事件D.鼠标划入事件
如何判断对象str(即var str =new String())是否为String类型()A.str ins...
单项选择题如何判断对象str(即var str =new String())是否为String类型()
A.str instanceof StringB.str instanceof stringC.str construction StringD.str construction string
以下程序打印结果是()console.log( "a" );setTimeout(function() { c...
以下程序打印结果是()console.log( "a" );setTimeout(function() { console.log( "c" )}, 500 );setTimeout(function() { console.log( "d" )}, 500 );console.log( "b" );
A.acbdB.a b c dC.acdbD.bdac
/^(?=.[A-Z])(?=.[a-z])(?=.\d)[\w!@#\$]{6,16}$/对该正则描述正确的...
多项选择题/^(?=.[A-Z])(?=.[a-z])(?=.\d)[\w!@#\$]{6,16}$/对该正则描述正确的是()
A.字符串长度为6至16位B.字符串包含数字字母下划线和!@#$四个特殊字符C.字符串必须同时包含大小写字母D.必须包含数字