新手js,我正在搜索并试图拼凑代码。但是我点击按钮时遇到了麻烦。 (http://new.cloudfile.co/transfer在低手处有这个大橙色+按钮) 我找到了一个方法
var tmp2=document.getElementsByClassName('...').item(...);
tmp2.click();
但我试过
('plusbtnmid').item(0) and ('ms-wow zoomInUp').item(0)
什么都没发生。
有人可以帮忙吗?
答案 0 :(得分:0)
如果要在文档加载时单击该+按钮,可以使用此Jquery Click()函数来实现。
$( document ).ready(function() {
$(".ms-bounce").click(); // Trigger the Plus Button with the class name inside the image tag.
});
我使用了这段代码,我通过浏览器检查元素。
<img data-target="#plusbtnpop" data-toggle="modal" class="ms-bounce" src="images/plusicon.png" alt="..">