点击"跳过广告"

时间:2015-11-29 20:46:13

标签: javascript command skip

我试图在此网站上运行javascript命令:http://cur.lv/r5pid 点击"跳过广告",但它不起作用。 命令是这样的:document.getElementById('skip-ad')click()。 但是我收到一条错误消息,声称标识skip-adnullUncaught TypeError: Can not read property 'click' of null (...)

有人能伸出援助之手吗? 感谢。

1 个答案:

答案 0 :(得分:1)

文档找不到这样的元素,因为它在“iframe”里面。您可以使用document查找iframe,然后在iframe中找到想要的元素。例如:

document.getElementById('myframe1').contentWindow.document.getElementById('x')

参考(可能是重复):How to pick element inside iframe using document.getElementById