iframe .click() 和 .trigger() 在下面的 Firefox v 4 中不起作用
我的网站上有一个 iframe,在 iframe 中我放置了一个按钮来触发这些
<input type="file">
元素:
按钮 id="点击"
输入类型=“文件”id=“文件”
这是脚本代码:
$("#click").click(function() {
$('#file').trigger('click');
});
我还将 .trigger
替换为 .click();
但没有任何反应
I have an iframe on my site, in the iframe I put a button to trigger the
<input type="file">
These are the elements:
button id="click"
input type="file" id = "file"
This is the script code:
$("#click").click(function() {
$('#file').trigger('click');
});
I also replace the .trigger
into .click();
but nothing happens
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需删除逗号。尝试像这样
分配按钮 id="click1"
Just remove commas.Try like this
assign button id="click1"