php程序员业余承接网页制作、软件开发。

有需要请联系13714715608

看看案例...

ckeditor裏的html實體被自動轉義怎麼辦?

2016-11-12T05:18:25.000000Z wudimei

ckeditor裏的html實體被textarea自動轉義怎麼辦?

其實很簡單,加上htmlspecialchars()函數就可以了。

<textarea id="content" name="content"><?php echo htmlspecialchars(  $row->content); ?></textarea>  
<script type="text/javascript">
        CKEDITOR.replace( 'content' );
</script>