js与jquery自动触发a链接的方法

admin4年前前端技术941

自动触发a链接的方法如下:

1.

<body >
 <a  href="http://www.shengmake.net" ><span>Affiliate</span></a> 
</body>
<script src="jquery-3.6.0.min.js"></script>

<script type="text/javascript">
 $(document).ready(function() {
     setTimeout(function() {
  $("span").click();
    }, 1000);
  
 
 });
 
</script>



2.

<script type="text/javascript">
var lianjie="http://www.shengmake.net";
var aa = document.createElement("a");
aa.setAttribute("href", lianjie);
// aa.setAttribute("target", "_blank");
var bodys = document.getElementsByTagName("body")[0];
bodys.appendChild(aa);
aa.click();
</script>


关键知识点:不能设置target属性为_blank否则会被浏览器拦截


相关文章

H5页面移动端双击屏幕禁止页面放大

在meta标签中加入user-scalable=no属性...

jquery如何获取div里面value的值以及原生写法

jquery写法$(this).attr("value")原生写法var value = document.getElementById(""+id+"...

jquery默认设置第一个类的css或者属性

var me=$("#cima>input");me.eq(0).css...

通过jquery开发导航下来菜单

核心知识是用jquery的hover方法去实现,动画效果是slideDown与slideUp代码下载地址:点击下载...

让TD 与div自动换行的css方法

word-wrap: break-word;  word-break: break-all; white-space: normal;...

Navigate down the menu through jquery development

The core knowledge is to use jquery's hover method to achieve, The animation effe...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。