我正在使用bootstrap-wysihtml5编辑器。在我的网络上,它运行良好。但是当我使用 jquery 将数据从它发送到 php 时,它会发送一些额外的数据。例如:
当我发送这个:
product two
它发送以下内容:
product+two%3Cbr%3E
我的 Bootstrap wysihtml5 配置在这里:
$('#form').wysihtml5({
image: false
});
我的 jquery ajax 代码在这里:
$.ajax({
url: "index.php",
type: 'POST',
dataType: 'html',
data: {
contentEdit: $('#form').serialize()
},
success: function(data) {
alert('something ...');
}
});
避免这种情况的程序是什么?