博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js函数模拟实现a标签的点击实现href
阅读量:5089 次
发布时间:2019-06-13

本文共 555 字,大约阅读时间需要 1 分钟。

//js函数实现模拟a标签的href //创建a标签,设置属性,点击  function js_a_href(){      var a = document.createElement('a');      a.setAttribute('href', 'http://www.XXX.com');      a.setAttribute('target', '_blank');      a.setAttribute('id', 'js_a');      //防止反复添加      if(document.getElementById('js_a')) {            document.body.removeChild(document.getElementById('js_a'));      }      document.body.appendChild(a);      a.click(); } //或者隐藏一个a标签,  function hidden_a_href(){
  document.getElementById("hi_a").click(); }

 

转载于:https://www.cnblogs.com/syp1Blog/p/10938175.html

你可能感兴趣的文章