我在使用 jQuery 加载页面时没有问题,但是当我使用 textarea 加载页面时,应该不会显示 tinymce。
$.ajax({
type: "POST",
url: 'textarea.php',
data: {data: info},
async: false,
beforeSend: function() {
},
complete: function() {
},
cache: false,
success: function(result) {
$('#form-area').html(result);
}
error: function(error) {
alert("Some problems have occured. Please try again later: " + error);
}
});