从 iframe 调用 jquery 插件中的函数
如何从 iframe 中调用 JQuery 插件函数?
(function($){
$.fn.jqueryEx = function() {
function CallThisFunctionFromIframe(){
}
}
})(jQuery);
编辑
iframe 与父文档位于同一域中。
How do i call a JQuery plugin function from within an iframe?
(function($){
$.fn.jqueryEx = function() {
function CallThisFunctionFromIframe(){
}
}
})(jQuery);
Edit
The iframe is on the same domain as parent document.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 iframe 中调用它
Call this from within the iframe
我可以建议你这种方法。只需将要调用的逻辑包装到函数中即可。
在 iframe 中你可以这样做。
I can suggest you this approach. Just wrap the logic you want to call into the function.
and in the iframe you can do so.