主题: 求教,高手速来,很急~~ |
作者: 想下水的鸟, 发布日期: 2012-08-10 12:07:16, 浏览数: 2133 |
问题:怎么去掉文本框右侧的上下箭头?
标题:<input type="text" id="txtTitle" runat="server" style="width: 260px;"/> JS: <script language="javascript" type="text/javascript"> KindEditor.ready(function(K) { var editor1 = K.create('#txtTitle', { cssPath: 'kindeditor/plugins/code/prettify.css', items: ['source', 'fontname', 'fontsize', 'forecolor', 'bold', 'italic', 'underline', 'strikethrough', '|', 'removeformat'], uploadJson: '../../Tools/kindeditor/NewsConfig/upload_json.ashx', fileManagerJson: '../../Tools/kindeditor/NewsConfig/file_manager_json.ashx', allowFileManager: true, height: '26px', minHeight:'25px', resizeType: 1, afterChange: function() { K('.word_count2n').html(this.count()); K('.word_count2').html(this.count('text')); } }); prettyPrint(); }); </script>
|