防止 iframe 回发调用 jQuery“ready” 父函数
我在 jQuery 选项卡布局中有一个 iframe。 我正在使用 iframe 上传图像,模拟 AJAX 文件上传。 似乎每当我的 iframe 回发时,它都会导致父页面的 $(document).ready 执行,从而重置我所在的当前选项卡。
关于如何防止这种情况有什么想法吗?
function uploadDone() {
var data = eval("("+ $('#upload_target').contents().find('body').html() +")");
if(data.success) {
$('#upload_summary').append("<img src='" + data.full_path + "' />");
$('#upload_summary').append("<br />Size: " + data.file_size + " KB");
}
else if(data.failure) { //Upload failed - show user the reason.
alert("Upload Failed: " + data.failure);
}
}
$(document).ready(function() {
$('#image_uploader').submit(function() {
if($.browser.safari || $.browser.opera) {
$('#upload_target').load(function(){
setTimeout(uploadDone, 0);
});
var iframe = document.getElementById('upload_target');
var iSource = iframe.src;
iframe.src = '';
iframe.src = iSource;
} else {
$('#upload_target').load(uploadDone);
}
});
});
I have an an iframe within a jQuery tab layout. I am using the iframe to upload an image, to simulate a AJAX file upload. It seems whenever my iframe postbacks, it causes the parent page's $(document).ready to execute, resetting the current tab I am positioned on.
Any ideas on how to prevent this?
function uploadDone() {
var data = eval("("+ $('#upload_target').contents().find('body').html() +")");
if(data.success) {
$('#upload_summary').append("<img src='" + data.full_path + "' />");
$('#upload_summary').append("<br />Size: " + data.file_size + " KB");
}
else if(data.failure) { //Upload failed - show user the reason.
alert("Upload Failed: " + data.failure);
}
}
$(document).ready(function() {
$('#image_uploader').submit(function() {
if($.browser.safari || $.browser.opera) {
$('#upload_target').load(function(){
setTimeout(uploadDone, 0);
});
var iframe = document.getElementById('upload_target');
var iSource = iframe.src;
iframe.src = '';
iframe.src = iSource;
} else {
$('#upload_target').load(uploadDone);
}
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标志是有意义的(正如 SolutionYogi 提到的)。 如果父框架中的 document.ready 只需要执行一次,请将全局标志设置为一个值,您可以在它再次触发时检查该值。
另一种方法是执行完 document.ready 后解除绑定。
例如
$(document).unbind('ready')
A flag makes sense (as what SolutionYogi mentioned). If the document.ready in the parent frame is only required to execute once, set a global flag to a value which you can check when it got fired again.
Another way is to unbind document.ready after executing it.
E.g.
$(document).unbind('ready')