使用ckeditor将外部页面加载到div中

时间:2012-06-22 00:07:04

标签: jquery prototypejs ckeditor external

以下是我的外部页面的代码,其中包含ckeditor(in.php)

<html>   
<head>   
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>
</head>   
<body>       
<textarea name=ck ></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'ck' );
</script>
</body> </html>

以下是我试图将此页面加载到(out.php)

的页面的代码
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="ckeditor/ckeditor.js"></script>

<script>
$(document).ready( function () { $('#page').load('in.php');

});

</script>
</head>

<body>
<div id=page ></div>
</body>
</html>

加载out.php没有显示任何内容和IE对象预期的错误。 另一方面,in.php可以很好地独立工作。

有人可以建议任何解决方案吗?我已经尝试getScript,将函数放入其中并在2页上来回放置代码,没有任何效果。如果有人可以帮助使用原型解决方案,我也会感兴趣。

1 个答案:

答案 0 :(得分:0)

你正在使用jQuery,所以不要忘记包含jQuery库:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>