cj_redirecturl="/HomeWork/main/load_course";
utility.xhttprw.data(cj_redirecturl,{data:courseid},function(response){
if(response){
window.location.href=base_url+"main";
///next
utility.xhttprw.data(redirecturl,{data:""},function(response){
if(response){
id=ent;
document.getElementById('content').innerHTML=response;
// Assignemnt module
//Call function from javascript/assignment.js file to display particular assignment (ent:means assignment_id) //
if(con==5)
{
get_assignment_id(ent);
}
if(con==9)
{
get_content_details(ent);
}
} //end of response
},false,'POST','html',true);
}
},'html');
在上面的代码window.location.href = base_url“main”;将页面重定向到其各自的页面,但这会停止执行紧接着它编写的代码.现在我希望这个代码在写入时执行,即首先代码应该带我到相应的“主”页面,然后代码写入后必须执行并给我一个必需的输出.
有人可以指导我实现这一目标吗?
最佳答案
原文链接:https://www.f2er.com/jquery/428005.html