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

文化推广网站建设心得万商惠网站建设系统开发

文化推广网站建设心得,万商惠网站建设系统开发,学校网站作用,网站将要准备建设的内容文章目录 ⭐前言⭐exe command api用法#x1f496; example示例#x1f496; 测试效果 ⭐execommand和getSelection 的联系⭐总结⭐结束 ⭐前言 大家好#xff0c;我是yma16#xff0c;本文分享关于 前端老古董execCommand——操作选中文本。 execommand 当一个 HTML 文… 文章目录 ⭐前言⭐exe command api用法 example示例 测试效果 ⭐execommand和getSelection 的联系⭐总结⭐结束 ⭐前言 大家好我是yma16本文分享关于 前端老古董execCommand——操作选中文本。 execommand 当一个 HTML 文档切换到设计模式时document暴露 execCommand 方法该方法允许运行命令来操纵可编辑内容区域的元素。 大多数命令影响document的selection粗体斜体等当其他命令插入新元素添加链接或影响整行缩进。 当使用contentEditable时调用execCommand() 将影响当前活动的可编辑元素。 vue3系列相关文章 vue3 fastapi 实现选择目录所有文件自定义上传到服务器 前端vue2、vue3去掉url路由“ # ”号——nginx配置 csdn新星计划vue3tsantd赛道——利用inscode搭建vue3(ts)antd前端模板 认识vite_vue3 初始化项目到打包 python_selenuim获取csdn新星赛道选手所在城市用echarts地图显示 让大模型分析csdn文章质量 —— 提取csdn博客评论在文心一言分析评论区内容 前端vue3——html2canvas给网站截图生成宣传海报 前端——html拖拽原理 前端 富文本编辑器原理——从javascript、html、css开始入门 ⭐exe command api用法 execCommand 是一个 JavaScript 方法用于执行编辑器中的命令比如修改文本样式、插入链接、插入表格等操作。 语法 const bool document.execCommand(aCommandName, aShowDefaultUI, aValueArgument)返回值 一个 Boolean 如果是 false 则表示操作不被支持或未被启用。 参数 aCommandName 一个 DOMString 命令的名称。可用命令列表请参阅 命令 。aShowDefaultUI 一个 Boolean是否展示用户界面一般为 false。Mozilla 没有实现。aValueArgument 一些命令例如 insertImage需要额外的参数insertImage 需要提供插入 image 的 url默认为 null。 注意事项 使用 execCommand 方法时应该保证光标位于一个可编辑的区域比如一个 contenteditable 属性为 true 的元素。 各个浏览器对于 execCommand 的支持情况不一样不同的命令也有不同的兼容性需要使用时要仔细检查浏览器兼容性。 example示例 html部分 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0link hrefstyle.css relstylesheet typetext/css /titleInsCode execommand/title /headbodydiv classcontainerdiv classcontainer-boxdiv classcontainer-box-headerdiv stylewidth:100%;text-align:left;margin:2px;execommand 指令 (选中内容修改)/divdiv classcontainer-box-header-button buttons idbutton-box-id/div/divdiv stylewidth:100%;text-align:left;margin:2px;修改内容/divdiv classcontainer-box-header-content contentEditabletrueEvery day of your life, it is important to take the time to “smell the roses” — to appreciate theexperiences that lead to happiness. This is part of being truly happy.Happiness is a state of mind. It starts with accepting where you are, knowing where you are goingand planning to enjoy every moment along the way. You know how to be happy, and feel that you haveenough time or money or love or whatever you need to achieve your goals. And just feeling that youhave enough of everything means that you do indeed have enough.You have to choose to be happy, and focus upon being happy, in order to be happy. If you insteadfocus upon knowing that you will be happy if you achieve something, you will never be happy, as youhave not learned to “smell the roses”. The irony is that when you are happy, you are inevitably moreproductive, and far more likely to achieve what everything-seekers are seeking./div/div/div/divscript srcscript.js/script /body/html逻辑 var parms [{cmd: aCommandName,desc: A DOMString representing the name of the command},{cmd: aShowDefaultUI,desc:A Boolean indicating whether the default user interface should be shown. This is not implemented in Mozilla.},{cmd: aValueArgument,desc:A DOMString representing some commands (such as insertimage) require an extra value argument (the images url). Pass an argument of null if no argument is needed.}];var commands [{cmd: backColor,val: red,desc:Changes the document background color. In styleWithCss mode, it affects the background color of the containing block instead. This requires a color value string to be passed in as a value argument. (Internet Explorer uses this to set text background color.)},{cmd: bold,icon: bold,desc:Toggles bold on/off for the selection or at the insertion point. (Internet Explorer uses the STRONG tag instead of B.)},{cmd: contentReadOnly,desc:Makes the content document either read-only or editable. This requires a boolean true/false to be passed in as a value argument. (Not supported by Internet Explorer.)},{cmd: copy,icon: clipboard,desc:Copies the current selection to the clipboard. Clipboard capability must be enabled in the user.js preference file. See},{cmd: createLink,val: https://twitter.com/netsi1964,icon: link,desc:Creates an anchor link from the selection, only if there is a selection. This requires the HREF URI string to be passed in as a value argument. The URI must contain at least a single character, which may be a white space. (Internet Explorer will create a link with a null URI value.)},{cmd: cut,icon: scissors,desc:Cuts the current selection and copies it to the clipboard. Clipboard capability must be enabled in the user.js preference file. See},{cmd: decreaseFontSize,desc:Adds a SMALL tag around the selection or at the insertion point. (Not supported by Internet Explorer.)},{cmd: delete,icon: scissors,desc: Deletes the current selection.},{cmd: enableInlineTableEditing,desc:Enables or disables the table row and column insertion and deletion controls. (Not supported by Internet Explorer.)},{cmd: enableObjectResizing,desc:Enables or disables the resize handles on images and other resizable objects. (Not supported by Internet Explorer.)},{cmd: fontName,val: Inconsolata, monospace,desc:Changes the font name for the selection or at the insertion point. This requires a font name string (Arial for example) to be passed in as a value argument.},{cmd: fontSize,val: 1-7,icon: text-height,desc:Changes the font size for the selection or at the insertion point. This requires an HTML font size (1-7) to be passed in as a value argument.},{cmd: foreColor,val: rgba(0,0,0,.5),desc:Changes a font color for the selection or at the insertion point. This requires a color value string to be passed in as a value argument.},{cmd: formatBlock,val: blockquote,desc:Adds an HTML block-style tag around the line containing the current selection, replacing the block element containing the line if one exists (in Firefox, BLOCKQUOTE is the exception - it will wrap any containing block element). Requires a tag-name string to be passed in as a value argument. Virtually all block style tags can be used (eg. H1, P, DL, BLOCKQUOTE). (Internet Explorer supports only heading tags H1 - H6, ADDRESS, and PRE, which must also include the tag delimiters lt; gt;, such as lt;H1gt;.)},{cmd: forwardDelete,desc:Deletes the character ahead of the cursors position. It is the same as hitting the delete key.},{cmd: heading,val: h3,icon: header,desc:Adds a heading tag around a selection or insertion point line. Requires the tag-name string to be passed in as a value argument (i.e. H1, H6). (Not supported by Internet Explorer and Safari.)},{cmd: hiliteColor,val: Orange,desc:Changes the background color for the selection or at the insertion point. Requires a color value string to be passed in as a value argument. UseCSS must be turned on for this to function. (Not supported by Internet Explorer.)},{cmd: increaseFontSize,desc:Adds a BIG tag around the selection or at the insertion point. (Not supported by Internet Explorer.)},{cmd: indent,icon: indent,desc:Indents the line containing the selection or insertion point. In Firefox, if the selection spans multiple lines at different levels of indentation, only the least indented lines in the selection will be indented.},{cmd: insertBrOnReturn,desc:Controls whether the Enter key inserts a br tag or splits the current block element into two. (Not supported by Internet Explorer.)},{cmd: insertHorizontalRule,desc:Inserts a horizontal rule at the insertion point (deletes selection).},{cmd: insertHTML,val: lt;h3gt;Life is great!lt;/h3gt;,icon: code,desc:Inserts an HTML string at the insertion point (deletes selection). Requires a valid HTML string to be passed in as a value argument. (Not supported by Internet Explorer.)},{cmd: insertImage,val: http://dummyimage.com/160x90,icon: picture-o,desc:Inserts an image at the insertion point (deletes selection). Requires the image SRC URI string to be passed in as a value argument. The URI must contain at least a single character, which may be a white space. (Internet Explorer will create a link with a null URI value.)},{cmd: insertOrderedList,icon: list-ol,desc:Creates a numbered ordered list for the selection or at the insertion point.},{cmd: insertUnorderedList,icon: list-ul,desc:Creates a bulleted unordered list for the selection or at the insertion point.},{cmd: insertParagraph,icon: paragraph,desc:Inserts a paragraph around the selection or the current line. (Internet Explorer inserts a paragraph at the insertion point and deletes the selection.)},{cmd: insertText,val: new Date(),icon: file-text-o,desc:Inserts the given plain text at the insertion point (deletes selection).},{cmd: italic,icon: italic,desc:Toggles italics on/off for the selection or at the insertion point. (Internet Explorer uses the EM tag instead of I.)},{cmd: justifyCenter,icon: align-center,desc: Centers the selection or insertion point.},{cmd: justifyFull,icon: align-justify,desc: Justifies the selection or insertion point.},{cmd: justifyLeft,icon: align-left,desc: Justifies the selection or insertion point to the left.},{cmd: justifyRight,icon: align-right,desc: Right-justifies the selection or the insertion point.},{cmd: outdent,icon: outdent,desc: Outdents the line containing the selection or insertion point.},{cmd: paste,icon: clipboard,desc:Pastes the clipboard contents at the insertion point (replaces current selection). Clipboard capability must be enabled in the user.js preference file. See},{cmd: redo,icon: repeat,desc: Redoes the previous undo command.},{cmd: removeFormat,desc: Removes all formatting from the current selection.},{cmd: selectAll,desc: Selects all of the content of the editable region.},{cmd: strikeThrough,icon: strikethrough,desc:Toggles strikethrough on/off for the selection or at the insertion point.},{cmd: subscript,icon: subscript,desc:Toggles subscript on/off for the selection or at the insertion point.},{cmd: superscript,icon: superscript,desc:Toggles superscript on/off for the selection or at the insertion point.},{cmd: underline,icon: underline,desc:Toggles underline on/off for the selection or at the insertion point.},{cmd: undo,icon: undo,desc: Undoes the last executed command.},{cmd: unlink,icon: chain-broken,desc: Removes the anchor tag from a selected anchor link.},{cmd: useCSS ,desc:Toggles the use of HTML tags or CSS for the generated markup. Requires a boolean true/false as a value argument. NOTE: This argument is logically backwards (i.e. use false to use CSS, true to use HTML). (Not supported by Internet Explorer.) This has been deprecated; use the styleWithCSS command instead.},{cmd: styleWithCSS,desc:Replaces the useCSS command; argument works as expected, i.e. true modifies/generates style attributes in markup, false generates formatting elements.}];var commandRelation {};function supported(cmd) {var css !!document.queryCommandSupported(cmd.cmd)? btn-succes: btn-error;return css;}function icon(cmd) {return typeof cmd.icon ! undefined ? fa fa- cmd.icon : ;}function doCommand(cmdKey) {var cmd commandRelation[cmdKey];if (supported(cmd) btn-error) {alert(execCommand(“ cmd.cmd ”)\nis not supported in your browser);return;}val typeof cmd.val ! undefined? prompt(Value for cmd.cmd ?, cmd.val): ;document.execCommand(cmd.cmd, false, val || ); // Thanks to https://codepen.io/bluestreak for finding this bug}function init() {var html ,template spancode classbtn btn-xs %btnClass% title%desc% οnmοusedοwnevent.preventDefault(); οnclickdoCommand(\%cmd%\)i class%iconClass%/i %cmd%/code/span;commands.map(function (command, i) {commandRelation[command.cmd] command;var temp template;temp temp.replace(/%iconClass%/gi, icon(command));temp temp.replace(/%desc%/gi, command.desc);temp temp.replace(/%btnClass%/gi, supported(command));temp temp.replace(/%cmd%/gi, command.cmd);html temp;});console.log(html,html)document.getElementById(button-box-id).innerHTML html;}window.onload(){init(); } inscode案例 测试效果 选中区域 加上 bold 添加链接 https://blog.csdn.net/qq_38870145 添加效果 ⭐execommand和getSelection 的联系 使用execommand的前提是存在getSelection 选区。 ⭐总结 execCommand 在使用时要保持选区的状态所以按钮事件配置关联需要阻止浏览器的点击行为preventDefault。 execCommand 的相关问题 回显选区文字的样式需要实时获取选区内容ie浏览器兼容性问题 兼容性方案 execCommand 方法是一个过时的方法它是用于在浏览器中执行命令的。该方法已经被废弃不建议使用。 替代方案取决于你想要实现的功能。以下是几种可能的替代方案 使用原生 JavaScript 方法根据你想要实现的功能可以使用原生 JavaScript 方法来替代 execCommand。例如如果你想要插入文本可以使用 document.execCommand(“insertText”, false, “Hello, World!”) 的替代方法element.value “Hello, World!”。 使用富文本编辑器库如果你想要实现更复杂的文本编辑功能可以考虑使用富文本编辑器库例如 TinyMCE、Quill、CKEditor 等。这些库提供了丰富的 API 和功能可以更方便地进行文本编辑操作。 使用内容编辑 API一些网页编辑器提供了内容编辑 API可以让你通过 API 直接修改编辑器的内容。例如ContentEditable API 允许你直接修改一个元素的内容而不需要使用 execCommand。 ⭐结束 本文分享到这结束如有错误或者不足之处欢迎指出 点赞是我创作的动力 ⭐️ 收藏是我努力的方向 ✏️ 评论是我进步的财富 感谢你的阅读
http://www.w-s-a.com/news/612656/

相关文章:

  • 有没有能帮人快速网站备案的机构网站建设与制作总结
  • 网站不用了怎么办苏州h5模板建站
  • 网站建设制作定制免费网络短剧
  • 建设部建造师强制注销网站h5响应式网站模板下载
  • 蛋糕网站内容规划建设网站需要多少钱济南兴田德润o厉害吗
  • 企业如何建设网站呢做网站的高手
  • 为什么打开网址都是站长工具开发一款网站需要多少钱
  • 做一个网站app需要多少钱分类信息网站建设计划
  • 怎样下载建设部网站建模培训
  • 北流网站建设制作旅游网站开发目的和目标
  • 网站公司怎么做的网站建设论文二稿
  • 网站建设服务商都有哪些html项目答辩
  • 网站上传到万网主机wordpress视频防盗链
  • 西安建设商城类网站广告设计公司文案
  • 如何建设好高校网站麻辣烫配方教授网站怎么做
  • 宁波网站建设计品牌推广策略分析
  • 网站自建设需要买什么时候开始深圳市建筑市场信息公开平台
  • 平台营销型网站建设小城镇建设的网站文献
  • 燕郊个人做网站小企业网站模板
  • 网站ip需要备案新开河街做网站公司
  • 网站定制设计方案wordpress批量传图片
  • 做外贸兼职的网站设计福州网站开发私人
  • 金华建站模板目前国内有哪些网站做家具回收
  • 个人做网站还是公众号赚钱好部门网站建设和维护
  • 系列图标设计网站推荐建商城网站
  • 中牟建设工程信息网站黑龙江 哈尔滨
  • 网站设计基本结构wap自助建论坛网站
  • 专业番禺网站建设爱做网站外国
  • 深圳罗湖网站设计公司价格制作网站的公司办什么营业执照
  • 长清网站建设价格群辉NAS搭建wordpress