gpt4 book ai didi

javascript - 找到 JQuery 元素但不可点击

转载 作者:行者123 更新时间:2023-12-02 22:51:31 24 4
gpt4 key购买 nike

非常奇怪...此页面是 protected 内容还是我不知道的内容?我尝试单击下一页 anchor 。

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');
}

最佳答案

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

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

buttonNext[0].click();

关于javascript - 找到 JQuery 元素但不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58162841/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com