click() 函数不在任何浏览器控制台上
click() function does not on any browser console
当我在浏览器上打开网站时。现在我想通过每个浏览器都有的 javascript 控制台单击按钮。按钮有 class 而网站没有使用 jquery 所以代码将是纯 javascript。
document.getElementsByClassName('btn-orange').trigger('click');
document.getElementsByClassName('btn-orange').click();
感谢您花时间帮助我。
document.getElementsByClassName('btn-orange')[0].click();
This will work, because
document.getElementsByClassName('btn-orange') will give u an array of selected DOM elements, even if u have only one element with this
classname, it will be on position first of the array, and then u call
call click event on that element.
当我在浏览器上打开网站时。现在我想通过每个浏览器都有的 javascript 控制台单击按钮。按钮有 class 而网站没有使用 jquery 所以代码将是纯 javascript。
document.getElementsByClassName('btn-orange').trigger('click'); document.getElementsByClassName('btn-orange').click();
感谢您花时间帮助我。
document.getElementsByClassName('btn-orange')[0].click();
This will work, because document.getElementsByClassName('btn-orange') will give u an array of selected DOM elements, even if u have only one element with this classname, it will be on position first of the array, and then u call call click event on that element.