gpt4 book ai didi

javascript - 从 Fancybox iframe 调用 jQuery?

转载 作者:行者123 更新时间:2023-11-29 20:21:16 25 4
gpt4 key购买 nike

我已经使用 iframe 在 Fancybox 中加载了一个页面。但是,当我尝试在该 iframe 中执行 jQuery 函数时,它不会起作用。如何访问 iframe 页面或内容,以便我可以在该页面上执行 jQuery?我在下面尝试过,但没有用。

jQuery(document).ready(function(){
parent.jQuery("#showcasef", jQuery.browser.msie ? parent.jQuery('body')[0] : parent.jQuery(document)).live('submit', function(e) {
e.preventDefault();
return false;
var pho_id = jQuery('#pho_id').attr('value');
var showcase =jQuery("#showcase_pho option:selected").val();
var action = "showcasep";
alert("here");


}
);

});

最佳答案

您需要在该 iframe 中再次包含 jQuery,或者尝试...

parent.$('body').text('Does it work?');

或者如果那太长了,做一个包装器

function $() {
return parent.jQuery.call(this, arguments);
}

关于javascript - 从 Fancybox iframe 调用 jQuery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3902774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com