Bootstrap wysihtml5 显示额外的字符串
Bootstrap wysihtml5 show extra strings
我正在使用 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 ...');
}
});
避免这种情况的程序是什么?
实际上问题是我在一页中使用了多个表单。否则它在框架内工作,这意味着当我们集成 Bootstrap wysihtml5 时,它是通过 iframe 嵌入的。最终我使用 ckeditor 解决了这个问题。它更灵活,更易于使用。要轻松使用它,您可以遵循其 API 文档。感谢大家。
我正在使用 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 ...');
}
});
避免这种情况的程序是什么?
实际上问题是我在一页中使用了多个表单。否则它在框架内工作,这意味着当我们集成 Bootstrap wysihtml5 时,它是通过 iframe 嵌入的。最终我使用 ckeditor 解决了这个问题。它更灵活,更易于使用。要轻松使用它,您可以遵循其 API 文档。感谢大家。