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

①在html标签中出现提示

  1. <a href="http://www.baidu.com" onclick="if(confirm('确认百度吗?')==false)return false;">百度</a>

②在js函数中调用

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

对应的标签改为:

    1. <a href="http://www.baidu.com" onclick="return foo();">百度</a>
上一篇:REmap首次尝试--PC端


下一篇:【Longest Valid Parentheses】cpp