我无法在elRTE富文本编辑器中使用 ajax 发布 textarea 值。
编辑器演示页面如下所示;
我使用下面的代码;
$.ajaxSetup({
type: "POST",
url: "forms.php",
cache: false,
dataType: "html"
});
$("input.add").live("click", function(){
$.ajax({
data: {action: 'add', tag: $('input.tag').val(), description: $('#editor').val()},
success: function(data){
$("#message").html(data);
}
});
});
我尝试了几种不同的方法来发送 textarea 值,但无法实现。