我正在尝试在CkEditor中添加带有特殊字符的语言,但它似乎不起作用。我已经尝试将config.language = 'sv';
添加到config.js中,但它没有用,所以我安装了语言插件,也没有帮助......
当我输入文字并提交时,它不显示添加特殊字符的文本的其余部分。
Det här är en test
(这是一个测试)
稍后会显示为Det h
更新:
AJAX CALL
$('.newcomment_submit').click(function(){
var newcomment_txtarea = CKEDITOR.instances['comment_txtarea'].getData();
$.ajax({
url:'/tsw/pages/s_comment.php',
type:'post',
data:$('.comment_form').serialize()+'&newcomment_txtarea='+newcomment_txtarea,
success: function(data){
alert(data);
}
});
});
PHP SCRIPT:
session_start();
require('connect.php');
if(!isset($_SESSION['id'])){
echo "err#sess";
} else {
if(strlen($_POST['newcomment_txtarea']) < 5) {
echo "err#shortcmt";
} else {
if($dbh->exec('INSERT INTO `comments`(`post_id`,`commenter_id`,`comment`) VALUES('.$dbh->quote($_POST['post_id']).','.$dbh->quote($_POST['commenter_id']).','.$dbh->quote($_POST['newcomment_txtarea']).')')){
echo "success";
} else {
echo "err#insert";
}
}
}