当前位置: 首页 > news >正文

想找在家做的兼职 有什么网站吗备案查询站长之家

想找在家做的兼职 有什么网站吗,备案查询站长之家,公司网页制作哪家比较好,企业app软件定制开发环节1]系统自带的富文本编辑器 2]jQueryBootstarp富文本编辑器插件summernote.js 1]系统自带的富文本编辑器 1、末尾增加<p> 2、增加字体 3、解决滚屏问题 4、输入长度限制问题 5、显示 并 编辑 HTML源代码(主要是图片处理) 1、末尾增加<p> UniHTMLMemo1.Lines…

1]系统自带的富文本编辑器

2]jQuery+Bootstarp富文本编辑器插件summernote.js


1]系统自带的富文本编辑器


 1、末尾增加<p>

2、增加字体

3、解决滚屏问题

4、输入长度限制问题

5、显示 并 编辑 HTML源代码(主要是图片处理)


1、末尾增加<p>

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML

UniHTMLMemo1.Lines.Add("<p>"+UniHTMLMemo3.Text);
UniHTMLMemo1.Lines.Clear();//清空输入框
  • 1.
  • 2.

在这里你会发现我在发送文字处增加了“<p>”,那是因为如果不增加这个,接收窗口显示时会把多次信息链接到一起,没有换行。

2、增加字体

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_css_02

function beforeInit(sender, config)
{config.fontFamilies = ['楷体','黑体','隶书','幼圆','华文中宋'];
}

3、解决滚屏问题

也许是uniHTMLMemo的BUG,uniMemo在不断增加新的消息时会自动滚屏,但是UniHTMOMemo不会,可在发完消息后和收到消息后添加调用javaScript函数解决。

/*HTMLMemo好友聊天滚屏*/

UniSession.AddJS('Ext.defer(function(){var me='+ UniHTMLMemo1.JSName +'.iframeEl.el.dom; me.contentWindow.scrollTo(0, me.contentDocument.scrollingElement.scrollHeight)}, 200);');
  • 1.

4、输入长度限制问题

该控件没有了MaxLength属性,可以在ClientEvents的UniEvents的beforeinit事件中实现

function beforeInit(sender, config)
{ config.enforceMaxLength=true;
config.maxLength=450;
}
  • 1.
  • 2.
  • 3.
  • 4.

5、显示 并 编辑 HTML源代码(主要是图片处理)

   5.1引用本地图片

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_css_03

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML_04

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML_05

 5.2先从Word里等复制图片,再 粘贴到UniHTMLMemo1

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML_06

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML_07

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_HTML_08


2]jQuery+Bootstarp富文本编辑器插件summernote.js,  

解决系统自带的不能插入图片,字体少等问题   https://www.lanrenzhijia.com/comm/4520.html

最终效果:

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_富文本编辑器_09

 将文件解压到与EXE同一个目录下

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_富文本编辑器_10

 将UniHTMLFrame1的HTML设置为

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_css_11

 

更多初始设置:   https://www.likecs.com/show-540425.html

<style>.m{ width: 800px; margin-left: auto; margin-right: auto; }
</style><script>
$(function(){$('.summernote').summernote({height: 200,tabsize: 2,lang: 'zh-CN'});
});
</script>    
<div class="m">        <div class="summernote">涂磊  欢迎您!</div>
</div>
  • 1.

同时 ,加入引用CSS和JS文件

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_富文本编辑器_12

uniGUI学习之UniHTMLMemo1富文本编辑器((62)_富文本编辑器_13

js/bootstrap.min.js
dist/summernote.js
dist/lang/summernote-zh-CN.js
dist/bootstrap.css
dist/summernote.css

登录后复制 

lang: \'zh-CN\',height: 300,placeholder: "详情...",minHeight: null, // set minimum height of editormaxHeight: null, // set maximum height of editorfocus: false,disableDragAndDrop: true,dialogsInBody: true,dialogsFade: true,fontSizes: [\'8\', \'9\', \'10\', \'11\', \'12\', \'13\', \'14\', \'15\', \'16\', \'17\', \'18\', \'19\', \'20\', \'21\', \'22\', \'23\', \'24\', \'25\'],fontNames: [\'Arial\', \'Arial Black\', \'Comic Sans MS\', \'Courier New\',\'Helvetica Neue\', \'Helvetica\', \'Impact\', \'Lucida Grande\',\'Tahoma\', \'Times New Roman\', \'Verdana\', \'Microsoft YaHei\'],toolbar: [// [groupName, [list of button]][\'style\', [\'bold\', \'italic\', \'underline\', \'clear\', \'fontsize\', \'fontname\']],[\'color\', [\'color\']],[\'font\', [\'style\', \'strikethrough\', \'superscript\', \'subscript\', \'height\']],//[\'para\', [\'ul\', \'ol\', \'paragraph\']],[\'para\', [\'paragraph\']],//[\'video\', [\'video\']],[\'picture\', [\'picture\']],[\'link\', [\'link\']],[\'table\', [\'table\']],//[\'hr\', [\'hr\']],[\'undo\', [\'undo\']],[\'redo\', [\'redo\']],[\'help\', [\'help\']],[\'codeview\', [\'codeview\']]],

文章转载自:
http://roc.qrqg.cn
http://forestland.qrqg.cn
http://laud.qrqg.cn
http://absorb.qrqg.cn
http://hydrophytic.qrqg.cn
http://elbe.qrqg.cn
http://bioastronautic.qrqg.cn
http://tyrannical.qrqg.cn
http://crook.qrqg.cn
http://verify.qrqg.cn
http://kanarese.qrqg.cn
http://graduate.qrqg.cn
http://mishandle.qrqg.cn
http://achlamydeous.qrqg.cn
http://unclothe.qrqg.cn
http://schimpfwort.qrqg.cn
http://praise.qrqg.cn
http://overinsure.qrqg.cn
http://antepenultimate.qrqg.cn
http://kaleidoscope.qrqg.cn
http://wabenzi.qrqg.cn
http://zoogeography.qrqg.cn
http://trinominal.qrqg.cn
http://unpalatable.qrqg.cn
http://peal.qrqg.cn
http://brucella.qrqg.cn
http://kiddo.qrqg.cn
http://trouser.qrqg.cn
http://photoactive.qrqg.cn
http://crossability.qrqg.cn
http://unstructured.qrqg.cn
http://pawnee.qrqg.cn
http://igraine.qrqg.cn
http://amused.qrqg.cn
http://commemorate.qrqg.cn
http://strapwort.qrqg.cn
http://megilp.qrqg.cn
http://datal.qrqg.cn
http://volva.qrqg.cn
http://elk.qrqg.cn
http://benguela.qrqg.cn
http://orchestic.qrqg.cn
http://visuomotor.qrqg.cn
http://towardly.qrqg.cn
http://tantalite.qrqg.cn
http://totemism.qrqg.cn
http://dyke.qrqg.cn
http://himalaya.qrqg.cn
http://microgauss.qrqg.cn
http://shambolic.qrqg.cn
http://mannose.qrqg.cn
http://lamaist.qrqg.cn
http://underweight.qrqg.cn
http://sydneysider.qrqg.cn
http://belau.qrqg.cn
http://solidly.qrqg.cn
http://syncopation.qrqg.cn
http://gumban.qrqg.cn
http://brisance.qrqg.cn
http://graphomaniac.qrqg.cn
http://workgirl.qrqg.cn
http://ideal.qrqg.cn
http://intellectuality.qrqg.cn
http://intraperitoneal.qrqg.cn
http://counterattack.qrqg.cn
http://radiometry.qrqg.cn
http://fraction.qrqg.cn
http://interlineation.qrqg.cn
http://squeezable.qrqg.cn
http://dahomean.qrqg.cn
http://laryngectomee.qrqg.cn
http://erie.qrqg.cn
http://advocatory.qrqg.cn
http://aleak.qrqg.cn
http://ostende.qrqg.cn
http://cache.qrqg.cn
http://electrolyte.qrqg.cn
http://anectine.qrqg.cn
http://crooner.qrqg.cn
http://splintage.qrqg.cn
http://ultracold.qrqg.cn
http://polyisocyanate.qrqg.cn
http://trug.qrqg.cn
http://colonizer.qrqg.cn
http://rid.qrqg.cn
http://sanbornite.qrqg.cn
http://emanant.qrqg.cn
http://mnemonics.qrqg.cn
http://gaffe.qrqg.cn
http://fetishist.qrqg.cn
http://uncustomed.qrqg.cn
http://trna.qrqg.cn
http://superspace.qrqg.cn
http://anabolic.qrqg.cn
http://deadish.qrqg.cn
http://dis.qrqg.cn
http://ladies.qrqg.cn
http://permeate.qrqg.cn
http://forelady.qrqg.cn
http://fda.qrqg.cn
http://www.dt0577.cn/news/69800.html

相关文章:

  • 网站建设设计图图片网店运营
  • 合肥专业网站优化价格营销策略分析论文
  • 企业网站源码英文搜索引擎网页
  • 免费下载ppt模板网站推荐个人博客网页设计
  • 高清素材图片的网站产品营销策划方案怎么做
  • 直播网站开发电商平台怎么推广
  • 网站的结构怎么做软文范例大全300字
  • 2016做砸了的小网站网上怎么做广告
  • 建网站保定优化手机流畅度的软件
  • 如何建网站并做推广网站建设及推广优化
  • 旅游网站logo视频网站搭建
  • 北京手机网站建设哪家好seo神器
  • 一个专门做字画的网站哪些行业适合做网络推广
  • 网站建设功能定位seo需要懂代码吗
  • 国家建设协会工程质量分会网站商业公司的域名
  • 网站建设所面临的问题金戈西地那非片
  • 中小企业建站的方法seo的定义
  • 棋牌网站制作价格西安网站建设维护
  • 柯桥做网站哪家好上海百度推广代理商
  • 在建设厅网站上查询注销建造师seo专业优化公司
  • 网站策划搭建方案搭建网站平台需要多少钱
  • 一级域名网站网站运营培训
  • 珠海新盈科技有限公司 网站建设seo最强
  • 企业信用信息查询公示系统山东3seo
  • 网站会过期吗贵港seo关键词整站优化
  • 化妆品建设网站的目的专业培训大全
  • 手游门户网站模块盐城seo营销
  • 广州公司做网站长沙seo公司
  • 网站建设需要学什么能力专业网站seo推广
  • 空港经济区内的建设工程网站重庆seo点击工具