0

这是我使用 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 页上来回放置代码,但没有任何效果。如果有人可以提供原型解决方案,我也会很感兴趣。

4

1 回答 1

0

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

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
于 2012-06-22T00:12:42.570 回答