如何自动单击此按钮?
我如何制作一个自动单击此按钮的脚本?
<div data-v-2aabe0a6="" class="box-inner">
<span data-v-2aabe0a6="">JOIN</span>
</div>
How I can make a script that automatically clicks this button?
<div data-v-2aabe0a6="" class="box-inner">
<span data-v-2aabe0a6="">JOIN</span>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该代码(如果在必要的必要时插入)将起作用
this code, if inserted where necessary, will work
也许重新考虑您的CSS。拥有一个新的有意义的类名称,例如“加入”,该名称描述了该按钮,并将其与“盒装”一起使用。然后定位“加入”。
(SideNote:也许通过使用
&lt; button&gt;
。)也许将标记更改为更有意义的东西。)。Maybe rethink your CSS. Have a new meaningful class name like "join" which describes the button, and use that alongside "box-inner". Then target "join".
(Sidenote: maybe change that markup to something more semantically meaningful too by using
<button>
.)