发布网友 发布时间:2022-04-23 01:10
共1个回答
热心网友 时间:2022-04-22 15:23
funtion test(obj)
{
obj.onblur=function(){
if(!obj.value.match(re)){ obj.style.border='1px solid red';}
else{obj.style.border='';}
}
}
test(oIpt1);test(oIpt2);test(oIpt3);