js 做货币验证

function isMoney(obj){
 var regu="/^(\d{1,3},?)+(\.\d+)?$/";
 var re=new RegExp(regu);
 if(re.test(obj)){
  return true;
 }else{
  return true;
 }
}

 

 

 

 

js关闭浏览器 (不弹出提示框)

关键字: window.close javascript 关闭浏览器

使用IE7,关闭浏览器时,会弹出一个提示框

 

解决方法:

Js代码 复制代码
  1. function closeWindow() {   
  2.     window.opener = null;   
  3.     window.open('''_self''');   
  4.     window.close();   
  5. }  

你可能感兴趣的:(JavaScript,浏览器)