在win98的ie6中使用,父页面调用包含kindereditor的子页面后,关闭子页面,父页面死掉,有解决办法吗?
父页面
<html>
<head>
<title>项目管理</title>
<script type="text/javascript" src="../EXT/jquery.js"></script>
<link rel="stylesheet" type="text/css" href="style/main.css" />
</head>
<body>
<B>项目管理主页面</B><br/><br/>
<?php
session_start();
if (!isset($_SESSION['domainUsername'])) {
echo "登录不正常!!";
return ;
}
include('initdata.php');
include('func.php');
test_show_info();
?>
<div id="new_proj">
<!-- <a href="apply_adjust.php?form_type=new_apply" target="aa">项目申请</a>-->
<button onclick="window.open('apply_adjust_test.php');">aaa</button>
</div>
<div id="need_to_do"><div>需要处理</div>
<script type="text/javascript">
$.ajaxSetup({cache:false});
$("#need_to_do").load('../ctrl/show_need_to_do.php');
</script>
</div>
<div id="proj_list"><a href="view.php" target="aa">项目浏览</a></div>
</body>
</html>
子页面 'apply_adjust_test.php'
<html>
<head>
<link rel="stylesheet" type="text/css" href="style/apply_adjust.css" />
<script type="text/javascript" charset="utf-8" src="../EXT/kindeditor-3.4.1/kindeditor.js"></script>
<script type="text/javascript">
KE.show({
id : 'content_1', //TEXTAREA输入框的ID
resizeMode : 1 ,//编辑器只能调整高度
newlineTag : 'p',
filterMode : true,
items:['undo', 'redo', 'cut', 'copy', 'paste',
'justifyleft', 'justifycenter', 'justifyright','justifyfull',
'fontname', 'fontsize', 'textcolor', 'bgcolor', 'bold',
'italic', 'underline', 'strikethrough', 'removeformat', 'hr', 'table']
});
</script>
</head>
<body>
<div class=row><span class=lable>项目费用明细</span><div><textarea id="content_1" name="PROJ_COST_DESC" cols="100" rows="8">aaaa</textarea></div>
</div>
</body>
</html>