parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
獲取到iframe的id;可以獲取到需要的iframe架構;
window.frames["id_tabcon_453"].document.getElementById('search_fresh').onclick();
這種方法我用的時候不對;
// 關閉后是我的任務頁面進行刷新
// 判斷瀏覽器是不是ie;谷歌和ie的處理方法不同
if (!!window.ActiveXObject || "ActiveXObject" in window){
// ie的處理方法
parent.window.frames["id_tabcon_453"].document.getElementById('search_fresh').onclick();
}else{
// 谷歌的處理方法
parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
}
// parent.window.frames["id_tabcon_453"].contentDocument.getElementById('search_fresh').onclick();
parent.iFrameTab.closeTabID('qc_task_manage_my_info_re_checked'+json_id);