主题: 如何通过js改变编辑器的宽度?
作者: cheng, 发布日期: 2014-05-06 21:59:09, 浏览数: 1696

<script>
KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content"]', {
//cssPath : '../../plugins/code/prettify.css',
uploadJson : 'ke4/asp/upload_json.asp',
fileManagerJson : 'ke4/asp/file_manager_json.asp',
allowFileManager : true,
..............


<textarea name="content" id="content" style="width:760px;height:900px;"><%=content%></textarea>


现在增加了一个按钮,设置textarea的宽度为380px,如果用下面的js代码无效,没有任何反应

document.getElementById("content").style.width="380px";


请教如何解决?



发表新帖 发表回复