Mousedown不会从模态弹出窗口的复选框触发到外部弹出按钮
模式弹出窗口是一个位于 iframe 内的 drupal 对话框。当在弹出窗口中单击复选框时,我需要在 iframe 外部的提交按钮上触发 mousedown。我写了下面的jquery,但是按钮没有影响。
$('#modal-popup .form-boolean--type-checkbox').click(() => {
let body = $(window.parent.document.body);
console.log(body);
body.find('[name="add_more_button"]').mousedown();
});
$(window.parent.document.body).find('[name="add_more_button"]').mousedown();
在控制台中工作,但不能在 jQuery 中工作。这是为什么呢?
The modal popup is a drupal dialogbox which is coming inside an iframe. I need to trigger mousedown on a submit button which is outside iframe when checkboxes are clicked in popup. I wrote the below jquery, but the button is not affecting.
$('#modal-popup .form-boolean--type-checkbox').click(() => {
let body = $(window.parent.document.body);
console.log(body);
body.find('[name="add_more_button"]').mousedown();
});
$(window.parent.document.body).find('[name="add_more_button"]').mousedown();
works in the console but not from jQuery. Why is this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过几个小时的研究,我得到了解决方案。从 iframe 中我们可以调用父窗口的函数。我使用下面的代码并且工作正常。
我使用单独的函数来触发按钮,并使用 window.FuntionName 名称。
从 iframe 弹出窗口中,我使用 window.parent.FunctionName() 调用此函数来触发 mousedown
I got the solution after hours of research. From iframe we can call a function of parent window. I used below code and working fine.
I used separate function for triggering the button and used window.FuntionName name for this.
From iframe popup, I called this function to trigger mousedown using window.parent.FunctionName()