非常奇怪...此页面受保护或我不知道的东西吗? 我试图单击下一页锚。
我尝试使用此元素来抓取
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');
}
答案 0 :(得分:1)
$('a.buttonNext')
选择器是元素数组(具有a
className的所有buttonNext
元素),即使只有一个元素,它仍然返回一个元素的数组,而不是本身就是元素。
我假设您只有一个buttonNext
元素,在这种情况下,这应该可以完成工作
buttonNext[0].click();