JQuery / JavaScript - 从另一个按钮单击事件触发按钮单击
我有这样的 HTML:
<input type="submit" name="savebutton" class="first button" />
<input type="submit" name="savebutton" class="second button" />
和 JS:
jQuery("input.second").click(function(){
// trigger second button ?
return false;
});
那么如何通过单击第一个按钮来触发第二个按钮的单击事件? 请注意,我对第二个按钮没有任何控制,无论是在 html 还是其上的单击事件上都没有......
I have this HTML which looks like this:
<input type="submit" name="savebutton" class="first button" />
<input type="submit" name="savebutton" class="second button" />
and JS:
jQuery("input.second").click(function(){
// trigger second button ?
return false;
});
So how can I trigger the click event from the 2nd button by clicking on the first one?
Note that I don't have any control over the 2nd button, neither on the html or the click event on it...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
将 id 添加到两个输入,id="first" 和 id="second"
Add id's to both inputs, id="first" and id="second"
好吧,你只需触发所需的点击事件:
Well, you just fire the desired click event:
你的意思是这样的:
You mean this:
使用 JavaScript:
document.getElementById("myBtn").click();
By using JavaScript:
document.getElementById("myBtn").click();
如果使用已接受答案中建议的
click()
方法不起作用,那么您可以尝试以下操作:If it does not work by using the
click()
method like suggested in the accepted answer, then you can try this:这工作正常,但文件名不再显示。
this works fine, but file name does not display anymore.
使用 JavaScript
use javascript