jquery点击a标签

 

参考文章:

https://stackoverflow.com/questions/5811122/how-to-trigger-a-click-on-a-link-using-jquery

 

方法1:

                // 清空文本框

                // 因为jquery无法模拟点击a标签,所以我们给a标签添加id属性,再用dom方式点击

                $('#J-balls-main-panel > div > div > div.panel-btn > a.btn.remove-all').attr('id', 'aRemoveAllTxt');

                document.getElementById("aRemoveAllTxt").click();

方法2:

$('#titleee a')[0].click();

你可能感兴趣的:(html,Jquery)