这就是我在做什么,从colobox创建一个链接,并在关闭颜色后我想从我现在的页面导航到其他页面所以下面的代码关闭了颜色框但它没有导航到其他页面
$(document).ready(function(e) {
$(".editquotelinenow").click(function(e) {
var id = $(this).attr('id');
var mainID = $(this).attr('data-id');
window.parent.$.colorbox.close();
window.location.href='index.cfm?action=linkproducts&ID='+mainID+'&ibase='+id+'&icode=sync';
});
});
不确定我在这里做错了什么,即使我已将父母移动到window.location下面但没有效果,
我也尝试添加window.parent.location.href=
,但也没有用,我在这里遗漏了一些傻事,不确定是什么,请指导
答案 0 :(得分:0)
使用window.parent和什么是colorbox的目的是什么?下面的代码工作正常。
$(document).ready(function() {
$(".editquotelinenow").click(function() {
var id = $(this).attr('id');
var mainID = $(this).attr('data-id');
window.location.replace('index.cfm?action=linkproducts&ID='+mainID+'&ibase='+id+'&icode=sync');
});
});