Mousedown不会从模态弹出窗口的复选框触发到外部弹出按钮

发布于 2025-01-19 20:54:36 字数 463 浏览 0 评论 0原文

模式弹出窗口是一个位于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人的歌 2025-01-26 20:54:36

经过几个小时的研究,我得到了解决方案。从 iframe 中我们可以调用父窗口的函数。我使用下面的代码并且工作正常。

$('#modal-popup .form-boolean--type-checkbox').click(() => {
    window.parent.parentFunction();
 });

 window.parentFunction = function(){
   $('[name="add_more_button"]').mousedown();
 }

我使用单独的函数来触发按钮,并使用 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.

$('#modal-popup .form-boolean--type-checkbox').click(() => {
    window.parent.parentFunction();
 });

 window.parentFunction = function(){
   $('[name="add_more_button"]').mousedown();
 }

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()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文