我对colorbox很新,喜欢它。我一直想提交一份 从Colorbox iframe到父窗口的形式,但没有任何运气。 任何建议将不胜感激!这是我的代码。
$('#CustomizeBuy').click(function(event){
event.preventDefault();
$(this).attr('action','customize-order.cfm');
parent.location.submit();
parent.$.fn.colorbox.close();
});
或
$('#CustomizeBuy').click(function(event){
event.preventDefault();
document.QuickOrderForm.action ="customize-order.cfm";
$('#QuickOrderForm').submit();
parent.$.fn.colorbox.close();
});
答案 0 :(得分:0)
与窗口相同域名的iframe是什么?即localhost& localhost poo.com& poo.com
就我的实验而言,出于安全原因,您无法在其他域中对iframe执行Javascript。