我尝试使用开发人员工具控制台以编程方式单击Wattpad上的#profile-dropdown
元素。
这是我的代码:
document.getElementById("profile-dropdown").click();
但它不起作用。它适用于其他网站,但不适用于Wattpad。我做错了什么?
这也不起作用:
document.querySelector(".on-follow").click();
答案 0 :(得分:1)
问题是因为Wattpad的下拉列表仅用于格式化。实际的点击监听器位于a
内的#profile-dropdown
标记中。试试这个:document.querySelector("#profile-dropdown a").click();