Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是网络编程新手。在 html 网页中,我想以编程方式按下按钮或锚标记。
jquery api 具有触发函数,它触发附加到事件的回调函数,但我的要求是以编程方式按下按钮或链接。
与其触发对按钮或链接的点击,更好的方法通常是通过设置访问链接window.location.href,或者通过调用函数或提交按钮单击将导致的表单。
window.location.href
我看到你使用 jQuery。
$("#myElement").click();
应该是这样的伎俩。