码迷,mamicode.com
首页 > Web开发 > 详细

js函数模拟实现a标签的点击实现href

时间:2019-05-28 17:09:01      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:app   属性   http   spl   creat   pen   append   display   com   

//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标签,
<a href="http://www.XXX.com" id="hi_a"  style="display:none;"></a>

function hidden_a_href(){
  document.getElementById("hi_a").click();
}

 

js函数模拟实现a标签的点击实现href

标签:app   属性   http   spl   creat   pen   append   display   com   

原文地址:https://www.cnblogs.com/syp1Blog/p/10938175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!