找到了jQuery元素,但无法点击

时间:2019-09-30 06:54:18

标签: javascript jquery click element

非常奇怪...此页面受保护或我不知道的东西吗? 我试图单击下一页锚。

enter image description here

请参见this page first.

我尝试使用此元素来抓取

var buttonNext = $('a.next-page');

if(buttonNext.length > 0){
    console.log('found!');

    // but when clicking still give the page not move or anything
    buttonNext.click();

    // or even no effect at all, same thing...
    buttonNext.trigger('click');
}

1 个答案:

答案 0 :(得分:1)

$('a.buttonNext')选择器是元素数组(具有a className的所有buttonNext元素),即使只有一个元素,它仍然返回一个元素的数组,而不是本身就是元素。

我假设您只有一个buttonNext元素,在这种情况下,这应该可以完成工作

buttonNext[0].click();