如何通过类名获取锚标记并使用jquery自动点击它

时间:2015-01-21 05:57:14

标签: javascript jquery

我可以获得锚标记的类名,并在此处自动点击代码

<div id="testing">
<a class="download_now link_btn" href="#">Download Now<i></i></a>
</div>

5 个答案:

答案 0 :(得分:0)

获取classname:

$('#testing a').attr('class');

触发点击:

$('#testing a').click();//or $('#testing a').trigger('click');

答案 1 :(得分:0)

你可以试试这个: -

var anchor_class=$('#testing a').attr('class'); //get class name
$('.'+anchor_class).click();   // trigger autoclick

答案 2 :(得分:-1)

将班级名称显示为警告

$('.download_now').click(function(){

  alert($(this).attr('class'));

});

答案 3 :(得分:-1)

如果要在div中使用id = testing

单击anchor(class = download_now),请尝试此操作
$("#testing a.download_now").click(function(){
        alert($(this).text());
        alert(this.href);
        alert('a');
    });

            OR

$("#testing a.download_now.link_btn").click(function(){
        alert($(this).text());
        alert(this.href);
        alert('a');
    });

如果您只想使用class = download_now

点击页面中的任何位置
$("#testing a.download_now").click(function(){
         alert($(this).text());
         alert(this.href);
        alert('a');
    });

答案 4 :(得分:-1)

以下是使用类名和自动点击获取锚标记的代码。

<强> 代码:

//on load of the page auto click the anchor tag
$(document).ready(function(){   
window.location = $('.download_now').attr('href');  
});

希望这有帮助。