kindeditor官网:http://kindeditor.net/demo.php 如何获取多个KindEditor中textarea文本框的值,方式很多种(带有HTML标签). var introduction = document.getElementById("richText").value; // 原生态脚本 var b = $('#content').val();<span style="white-space:pre"> //jQuer…
// When the value of the text area changes... $("textarea").on("input", function() { // If there's at least one character... if ($(this).val().length > 0) { // Enable the button. $("button").prop("disabled", fals…