我正在使用 ckeditor 来编辑屏幕上看到的文本。信息取自数据库并以 div 元素写入屏幕,并且可以通过双击来编辑信息。但是,编辑后我无法获得编辑后的信息。这是我的代码,我尝试添加一个包含 div 元素的表单,但它不起作用。
<form method="post">
<p>
Double-click any of the following <code><div></code> elements to transform them into
editor instances.</p>
<?php
$makeleSql = 'SELECT * FROM makale';
$makaleRs = $con->func_query($makeleSql);
while ($makaleRow = mysql_fetch_array($makaleRs)) {
?>
<div class = "editable" id = <?php echo "content".$makaleRow['id'];?> style="display:none">
<?php
$contentSql = 'SELECT * FROM content WHERE makale_id ='.$makaleRow['id'];
$contentRs = $con->func_query($contentSql);
while ($contentRow = mysql_fetch_array($contentRs)) {
echo $contentRow['icerik'].$makaleRow['id'];
}
?>
</div>
<?php }
?>
<button type="submit" value="Submit" onclick="getDiv();"/>
</form>
我应该怎么做才能获取 div 元素中的信息?此外,我正在使用这个例子。 http://nightly.ckeditor.com/7484/_samples/divreplace.html
谢谢。