在通过 AJAX 提交时,如何获取 nicEdit 表单的内容,可以按照以下步骤进行:
bkLib.onDomLoaded(function() {
nicEditors.allTextAreas()
});
</script>
getContent()
方法来获取表单内容。var nicEditor = nicEditors.findEditor('your_textarea_id');
var content = nicEditor.getContent();
其中,your_textarea_id
是你的 textarea 元素的 ID。
content
变量作为 AJAX 请求的参数之一,发送到服务器端。var xhr = new XMLHttpRequest();
xhr.open('POST', 'your_server_url', true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function() {
if (xhr.readyState == 4 && xhr.status == 200) {
// 处理服务器返回的结果
}
};
xhr.send('content=' + encodeURIComponent(content));
其中,your_server_url
是你的服务器端处理 AJAX 请求的 URL。
content
参数,并将其保存到数据库或其他存储介质中。以上就是在通过 AJAX 提交时,如何获取 nicEdit 表单的内容的方法。
领取专属 10元无门槛券
手把手带您无忧上云