我的代码
<html>
<head>
<script type="text/javascript" src="jquery/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="editor/kindeditor.js"></script>
<script type="text/javascript">
KE.show({
id : 'content_1', //TEXTAREA输入框的ID
resizeMode : 1 ,//编辑器只能调整高度
newlineTag : 'p',
afterCreate : function(id) {
KE.create(id);
KE.toolbar.disable(id, []);
KE.g[id].iframeDoc.designMode = "off";
KE.g[id].newTextarea.disabled = true;
}
});
</script>
</head>
<body>
<textarea id="content_1" name="content" cols="100" rows="8" style="width:700px;height:300px;">
sdsdsdsd
</textarea>
</body>
</html>