a标签跳转之前加点击事件

①在html标签中出现提示

 

[html]  view plain  copy
 
  1. <href="http://www.baidu.com" οnclick="if(confirm('确认百度吗?')==false)return false;">百度a>  


②在js函数中调用

 

 

[javascript]  view plain  copy
 
  1. function foo(){  
  2.     if(confirm("确认百度吗?")){  
  3.         return true;  
  4.     }  
  5.     return false;  
  6.  }    


对应的标签改为:

 

 

[html]  view plain  copy
 
    1. <href="http://www.baidu.com" οnclick="return foo();">百度a>  

更多专业前端知识,请上 【猿2048】www.mk2048.com

你可能感兴趣的:(前端)