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

宁波网站建设熊掌号代运营公司的套路

宁波网站建设熊掌号,代运营公司的套路,建一个公司网站需要几天,北京地区做网站推广用哪家的好一、主送机关的规定 公文一般在标题和正文之间还有主送机关#xff0c;相关规定为#xff1a; 主送机关 编排于标题下空一行位置#xff0c;居左顶格#xff0c;回行时仍顶格#xff0c;最后一个机关名称后标全角冒号。如主送机关名称过多导致公文首页不能显示正文时相关规定为 主送机关   编排于标题下空一行位置居左顶格回行时仍顶格最后一个机关名称后标全角冒号。如主送机关名称过多导致公文首页不能显示正文时应当将主送机关名称移至版记。 如需把主送机关移至版记除将“抄送”二字改为“主送”外编排方法同抄送机关。既有主送机关又有抄送机关时应当将主送机关置于抄送机关之上一行之间不加分隔线。 二、主送机关行的判断 这里我们先不考虑 把主送机关移至版记的情况处理起来相对简单。 一最简单的办法 最简单的办法就是用字符串最末一个符号是为全角冒号来判断 !DOCTYPE html html meta nameAuthor contentPurpleEndurer title公文一键排版系统/title bodyscript//功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonCn(p) {return (p.substring(p.length-1) ? true : false); }var s[河池市××, 河池市×× ,河池市×× ,河池市××];for (var i 0; i s.length; i) {document.write(末位字符为[ s[i].substring(s[i].length-1) ]   isMainDeDeWithColonCn(s[i])  br); } /script/body /html 程序运行结果如下 末位字符为[]  true 末位字符为[]  true 末位字符为[ ]  false 末位字符为[×]  false 二存在多余空格的情况 可见这种方法最简单但无法应对用户在全角冒号后多输入空格的情况。 我们改用正则表达式来检测 !DOCTYPE html html meta nameAuthor contentPurpleEndurer title公文一键排版系统/title bodyscript//功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonCn(p) {//return (p.substring(p.length-1) ? true : false);return /.*(){1}\s*$/gi.test(p);}var s[河池市××, 河池市×× ,河池市×× ,河池市××];for (var i 0; i s.length; i) {document.write(末位字符为[ s[i].substring(s[i].length-1) ]   isMainDeDeWithColonCn(s[i])  br); } /script/body /html 程序运行结果如下 末位字符为[]  true 末位字符为[]  true 末位字符为[ ]  true 末位字符为[×]  false 三以英文冒号结束的情况 我们还要考虑用户不小心以英文冒号结束的情况改进代码如下 !DOCTYPE html html bodyscript//功能判断是否为以半角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonEn(p) {return /.*(:){1}\s*$/gi.test(p); } //功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonCn(p) {//return (p.substring(p.length-1) ? true : false);return /.*(){1}\s*$/gi.test(p);}//功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDe(p) {//return (isMainDeDeWithColonCn(p) | isMainDeDeWithColonEn(p) ? true : false);return /.*(|:){1}\s*$/gi.test(p); } var s[河池市××, 河池市×× ,河池市×× ,河池市××, 河池市×× ,河池市×× ,河池市×× ];for (var i 0; i s.length; i) {document.write(末位字符为[ s[i].substring(s[i].length-1) ]   isMainDeDe(s[i])  br); } /script/body /html 程序运行结果如下 末位字符为[]  true 末位字符为[]  true 末位字符为[ ]  true 末位字符为[]  true 末位字符为[]  true 末位字符为[ ]  true 末位字符为[×]  false 这样我们基本可以处理主送单位行多输入空格或者半角冒号的情况了。 三、主送机关行的排版 我们修改setDocFmt()添加对主送单位格式的处理代码 /功能设置公文格式Set document format //输入无 //输出无 //记录20230726添加对附件及附件标题格式的处理代码 // 20230729添加对主送单位格式的处理代码 function setDocFmt() {taDbg.value \n---setDocFmt()\n;getArg(); //读取预设参数var t getClearInfoArray();//标题if (cbDocTilte){t[0] setDocTitle(t[0]) /pp stylemargin:0px; line-height: rs nbsp;;}var i (cbDocTilte ? 1 : 0);//2023-07-26增加while (i t.length){if (i t.length-1)//20230716增加{if (isBadging(t[i],t[i1]))//是落款{//落款前加空行t[i-1] /pp stylemargin:0px; line-height: rs nbsp;;//设置落款t[i] setBadging(t[i],t[i1]);t[i1] null;taDbg.value \nt[ (i-1) ] t[i-1] \nt[ i ] t[i] \nt[ (i1) ] t[i1];//i;//i;i 2;continue;}if (isAttachmentTitle(t[i],t[i1])) //是附件及附件标题{t[i] setAttachmentTitleFmt(t[i],t[i1]);t[i1] null;taDbg.value \nt[ (i-1) ] t[i-1] \nt[ i ] t[i] \nt[ (i1) ] t[i1];//i;//i;i 2;continue;}}//ifif (isMainDeDe(t[i]))//是主送单位吗20230729增{t[i] setMainDeDe(t[i]);//是i;continue;}t[i] setParaFmt(t[i]);i;}//while()//alert(t.join());edRichBody.innerHTML t.join(); }//setDocFmt() 再编写设置主送机关行格式的函数 setMainDeDe() //功能设置主送机关行格式main delivery department //输入p送机关行字符串 //输出主送机关行格式化字符串 //记录20230729创建 function setMainDeDe(s) {taDbg.value \n---setMainDeDe()\n;var p s;var a null;if (isIncludeSpace(p)){p p.eliminateSpace();a 已删除多余的字符;}if (isMainDeDeWithColonEn(p)){p p.replaceAll(:, );a ((nulla) ? null : ) 半角冒号已转为全角冒号;}p p stylemargin:0px; line-height: rs pt; font-family: mtfn ; font-size: mtfs pt; p;if (null ! a){p g_sWarmPromptLeft g_sWarmPromptTxt a g_sWarmPromptRight;}taDbg.value p \n;return p; }//setMainDeDe() 四、程序运行效果 如下 五、完整代码 如下 !DOCTYPE HTML HTML head meta http-equivContent-Type contenttext/html; charsetutf-8 / meta nameAuthor contentPurpleEndurer title公文一键排版系统/title !-- 20230729 1.将 text-indent的值从 2em改为 32pt2.增加主送单位格式排版//-- script typetext/javascript var aFontName [方正小标宋简体,//0黑体,//1微软雅黑,//2仿宋_GB2312,//3仿宋,//4楷体_GB2312,//5楷体,//6宋体,//7Arial,//8Wingdings 2//9 ];//sId:select control id, iDefSel:default selected function showFontNameSel(sId, iDefSel) {document.write(select id, sId, width50);for (var i 0; i aFontName.length; i){document.write(option value, aFontName[i], );document.write(iiDefSel ? selected : );document.write(aFontName[i],/option);}document.write(/select); }var aFontSize [[初号, 42],//0[小初, 36],//1[一号, 26],//2[小一, 24],//3[二号, 22],//4[小二, 18],//5[三号, 16],//6[小三, 15],//7[四号, 14],//8[小四, 12],//9[五号, 10.5], //10[小五, 9],//11[六号, 7.5],//12[小六, 6.5],//13[七号, 5.5],//14[八号, 5]//15 ];var aAlign [[左对齐,left],//0[居中对齐,center],//1[右对齐,right],//2[两端分散对齐,justify]//3 ];var g_sWarmPromptLeft span stylecolor:red; font-style:italic;padding-left:15pt;//2023年7月29增 var g_sWarmPromptTxt *公文一键排版系统温馨提示;//2023年7月29增 var g_sWarmPromptRight /span;//2023年7月29增//sIdselect control id, iDefSeldefault selected function showFontSizeSel(sId, iDefSel) {document.write(select id, sId, );for (var i 0; i aFontSize.length; i){document.write(option value,aFontSize[i][1], );document.write(iiDefSel ? selected : );document.write(aFontSize[i][0],/option);}document.write(/select); }//sIdselect control id, iDefSeldefault selected function showAlignSel(sId, iDefSel) {document.write(select id, sId, );for (var i 0; i aAlign.length; i){document.write(option value,aAlign[i][1], );document.write(iiDefSel ? selected : );document.write(aAlign[i][0],/option);}document.write(/select); }//showAlignSel()function setDocTitle(s) {//dtfn 标题字体名 font name//dtfs 标题字号 font size//dtta 标题对齐方式 text align//rs 行距 row spacingreturn p stylemargin:0px; font-family: dtfn ;font-size: dtfs pt; text-align: dtta ; line-height: rs pt; s; }//setDocTitle()//去除P中的属性 function stripPattribs(s) {var i s.indexOf();return ((-1 ! i) ? s.substr(i1) : s); }//去除HTML代码 String.prototype.stripHTML function() {//var reTag /(?:.|\s)*?/g; //var reTag /[^]/gi; //过滤所有html标签但不包括html标签内的内容 return this.replace(/(?:.|\s)*?/g,); }String.prototype.trim function() {//去除首尾空格return this.replace(/(^\s*)|(\s*$)/g, ); } String.prototype.ltrim function() { return this.replace(/(^\s*)/g, ); } String.prototype.rtrim function() { return this.replace(/(\s*$)/g, ); } //判断是否为中文标点符号 String.prototype.isCnPunctuation function() { /*var reg /[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/;return (reg.test(this)) ? true : false; *///return (/[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/.test(this)) ? true : false;return (/[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/.test(this)); //20230730修改 }//判断是否为英文标点符号 String.prototype.isEnPunctuation function() { /*var reg /[\x21-\x2f\x3a-\x40\x5b-\x60\x7B-\x7F]/;return (reg.test(c)) ? true : false; *///return (/[\x21-\x2f\x3a-\x40\x5b-\x60\x7B-\x7F]/.test(this)) ? true : false; return /[\x21-\x2f\x3a-\x40\x5b-\x60\x7B-\x7F]/.test(this); }//功能判断是否为中文或英文标点符号 String.prototype.isPunctuation function() { //return ((/[\x21-\x2f\x3a-\x40\x5b-\x60\x7B-\x7F]/.test(this)) || (/[\u3002|\uff1f|\uff01|\uff0c|\u3001|\uff1b|\uff1a|\u201c|\u201d|\u2018|\u2019|\uff08|\uff09|\u300a|\u300b|\u3008|\u3009|\u3010|\u3011|\u300e|\u300f|\u300c|\u300d|\ufe43|\ufe44|\u3014|\u3015|\u2026|\u2014|\uff5e|\ufe4f|\uffe5]/.test(this))) ? true : false; return (this.isEnPunctuation() || this.isCnPunctuation()) ? true : false; }//判断是否为纯半角阿拉伯数字串 String.prototype.isArabicNumEn function() {return /^\d$/.test(this); }//判断是否为纯全角阿拉伯数字串 String.prototype.isArabicNumCn function() {//[\uff10|\uff11|\uff12|\uff13|\uff14|\uff15|\uff16|\uff17|\uff18|\uff19][|||||||||]return (/^[\uff10|\uff11|\uff12|\uff13|\uff14|\uff15|\uff16|\uff17|\uff18|\uff19]$/.test(this)); }//判断是否为纯全角或纯半角阿拉伯数字串 String.prototype.isPureArabicNum function() {//[\uff10|\uff11|\uff12|\uff13|\uff14|\uff15|\uff16|\uff17|\uff18|\uff19][|||||||||]return (this.isArabicNumEn() || this.isArabicNumCn()); }//判断是否为全阿拉伯数字串全角或半角阿拉伯数字均可 String.prototype.isArabicNum function() {//[\uff10|\uff11|\uff12|\uff13|\uff14|\uff15|\uff16|\uff17|\uff18|\uff19][|||||||||]return (/^[\d|\uff10|\uff11|\uff12|\uff13|\uff14|\uff15|\uff16|\uff17|\uff18|\uff19]$/.test(this)); }//功能将edRichBody内容分解成字符串数组并清除其中的多余字符空格、HTML代码等 //输入无 //输出清后多余字符的字符串数组 //记录20230729增加清除温馨提示信息将多个循环整合到一个循环内 function getClearInfoArray() {var s edRichBody.innerHTML.replace(/br(?:.|\s)*?/gi,/pp);var t s.split(p);taDbg.value \n---getClearInfoArray()\n;for (var i0; i t.length; i){taDbg.value \nt[ i ] t[i];} s 0;while (s t.length){t[s] stripPattribs(t[s]);t[s] t[s].stripHTML();//以下两句顺序不能颠倒t[s] t[s].replace(/nbsp;/ig, ); //去除空格代码 nbsp;t[s] t[s].trim(); //去除首尾空格var j t[s].indexOf(g_sWarmPromptTxt);//20230729增加清除温馨提示信息if (-1 ! j){t[s] t[s].substring(0,j);}if (t[s].length0 || t[s]/p || t[s]null){taDbg.value \nsplice: t[ s ] t[s];t.splice(s,1);}else{s;}}//while()taDbg.value \n---\n;for (var i0; i t.length; i){taDbg.value \nt[ i ] t[i];} return t; }function clearDocFmt() {var s p getClearInfoArray().join(/pp);//alert(s);edRichBody.innerHTML s;//alert(edRichBody.innerHTML); }//功能是否以标点符号结束Is aunctuation at the end of the string String.prototype.isEndWithPunctuation function() { /*var c this.substring(this.length-1);return c.isPunctuation(); */return this.substring(this.length-1).isPunctuation(); }//语句结束符号字符串,考虑到三级标题序号可能包括英语句号此处不将英语句号列为语句结束符号 var sStatementEndPunctuation 。?…!?;//功能获取段落文字中的第一个语句结束符号位置 //输入p:字符串 //输出第一个语句结束符号位置 //记录20230729更新 function getFirstPunctuationPos(p) {//taDbg.value \n ---getFirstPunctuationPos( p )\n;var r p.length, n;for (var i 0; i sStatementEndPunctuation.length; i){n p.indexOf(sStatementEndPunctuation[i]);if ( (-1 ! n) (n r) ){r n;break;//20230729增加//taDbg.value \n p[i] n n r r;}}return r; }//getFirstPunctuationPos(p)//功能判断字符串是否只有一句话 //输入p字符串 //输出true是一句话false不是一句话 function isAstatement(p) { /*for (var i 0; i sStatementEndPunctuation.length; i){var n p.indexOf(sStatementEndPunctuation[i]);if (n !-1 n p.length-1) {return true;}}return false; */var n getFirstPunctuationPos(p);return ((( -1 ! n) (n p.length-1)) ? true : false); }/* //功能标题是否单独成行 Is paragraph title a single line? //输入t文字 //输出true是独立标题行false不是独立标题行 function ptIsALine(t) {return isAstatement(t) ; } //ptIsALine(t) *///功能设置一级标题set paragraph format with primay title //输入t文字 //输出格式化字符串 function setParaTitle1(t) {var r;if (isAstatement(t)) //(ptIsALine(t)) //标题是否单独成行{//return p stylefont-family: fn ;font-size: fs pt; text-align: ta ; line-height: rs pt; s;r p stylemargin:0; font-family: pt1fn ;font-size: pt1fs pt; line-height: rs pt; text-indent: sn pt; t;}else{//标题不单独成行var n getFirstPunctuationPos(t);//t.indexOf(。);r p stylemargin:0; line-height: rs pt; text-indent: sn pt; font-family: mtfn span stylefont-family: pt1fn ;font-size: pt1fs pt; t.substring(0, n) /span t.substring(n);}taDbg.value \n---setParaTitle1: r;return r; } //setParaTitle1(t)//功能设置二级标题set paragraph format with secondary title //输入t文字 //输出格式化字符串 function setParaTitle2(t) {taDbg.value \n---setParaTitle2: t;var r;//var b document.getElementById(cbSecondaryTitleStrong).checked; //是否加粗if (isAstatement(t))//(ptIsALine(t)) //标题是否单独成行{//return p stylefont-family: fn ;font-size: fs pt; text-align: ta ; line-height: rs pt; s;r p stylemargin:0; font-family: st2fn ;font-size: st2fs pt; line-height: rs pt; text-indent: sn pt; (st2Strong ? font-weight: bold; : ) t;}else{//标题不单独成行var n getFirstPunctuationPos(t);r p stylemargin:0; line-height: rs pt; text-indent: sn em; font-size: st2fs pt; font-family: mtfn span stylefont-family: st2fn (st2Strong ? ;font-weight: bold; : ) t.substring(0, n) /span t.substring(n);}return r; }//setParaTitle2(t)//功能在段落文本末尾添加缺少标点符号的提示文本 //输入q待添加提示的文本 //输出添加提示后的文本 //记录20230726修改变量strMissPunctuation // 20230729 停用 /* function appendMissPunctuationPrompt(q) {//const strMissPunctuation *公文一键排版系统温馨提示此处是否遗漏标点符号;const strMissPunctuation g_sWarmPromptTxtLeft g_sWarmPromptTxt 此处是否遗漏标点符号 g_sWarmPromptRight;var k q.lastIndexOf(strMissPunctuation); //q (-1 ! k ? q.substring(0, k) : q) span stylecolor:red; font-weight:bold; strMissPunctuation /span;q (-1 ! k ? q.substring(0, k) : q) strMissPunctuation;return q;//return (-1 ! k ? q.substring(0, k) : q) span stylecolor:red; font-weight:bold; strMissPunctuation /span; }//appendMissPunctuationPrompt() */ //功能设置三级标题set paragraph format with third title //输入t文字 //输出格式化字符串 function setParaTitle3(t) {taDbg.value \n---setParaTitle3: t;var r;//var b document.getElementById(cbThirdTitleString).checked; //是否加粗if (isAstatement(t))//(ptIsALine(t)) //标题是否单独成行{//return p stylefont-family: fn ;font-size: fs pt; text-align: ta ; line-height: rs pt; s;r p stylemargin:0; font-family: mtfn ;font-size: mtfs pt; line-height: rs pt; text-indent: sn pt; (tt3Strong ? font-weight: bold; : ) t;}else{//标题不单独成行var n getFirstPunctuationPos(t);r p stylemargin:0; line-height: rs pt; text-indent: sn pt; font-size: mtfs pt; font-family: mtfn (tt3Strong ? span stylefont-weight: bold; : ) t.substring(0, n) (tt3Strong ? /span : ) t.substring(n);if ( !r.isEndWithPunctuation()){//r appendMissPunctuationPrompt(r);20230729停用r g_sWarmPromptLeft g_sWarmPromptTxt 此处是否遗漏标点符号 g_sWarmPromptRight;}}//ifreturn r; }//setParaTitle3(t)//是否为只包含一二三四五六七八九十的字符串 String.prototype.isCnNum function() {//[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341] [一二三四五六七八九十]return (/^[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341]$/.test(this)); }//Is the paragraph with primary title?一级标题 function isIncludePrimaryTitle(p) {var t p.indexOf(、);return ((-1 ! t) (p.substring(0,t).isCnNum())) ? true : false;//return /^[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341][\u3001]{1}/.test(p); //可匹配“ 十一、三四”中的“十一、”//return /^\s*[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341][\u3001]{1}/.test(p); //可匹配“ 十一、三四”或“ 十一、三四”中的“十一、”//(\b[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341])*[\u3001]{1}可匹配“十一、三四”中的顿号//\b[\u4e00|\u4e8c|\u4e09|\u56db|\u4e94|\u516d|\u4e03|\u516b|\u4e5d|\u5341]*[\u3001]{1}可匹配“a十一、三四”中的“十一、” }//isIncludePrimaryTitle(p)//Is a secondary title serial number with parenthesis是带小括号的二级标题序号吗 function isT2SNwithParenthesis(p) {var t p[0];if (t (){t p.indexOf());if ((-1 ! t) ((p.substring(1,t)).isCnNum())) {return true;}}//ifif (t ){t p.indexOf();if ((-1 ! t) (p.substring(1,t).isCnNum())) {return true;}}//ifreturn false;//二级标题 }//isSNwithParenthesis(p)//Is the paragraph with secondary title?二级标题 function isIncludeSecondaryTitle(p) {var t p[0];//t p.substring(0, 1);if (-1! ㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩.indexOf(t)){return true;}if (isT2SNwithParenthesis(p)){return true;//二级标题}return false; }//isIncludeSecondaryTitle(p)//Is the paragraph with third title?三级标题 function isIncludeThirdTitle(p) {var t p.indexOf(.);if (-1t){t p.indexOf();}return ((-1 ! t) p.substring(0,t).isPureArabicNum()) ? true : false; }//isIncludeThirdTitle(p)//功能获取文字串的标题级别 //输入p文字串 //输出1一级标题2二级标题3三级标题0其它 function getTitleLevel(p) {taDbg.value \n---getTitleLevel: p;//var t p[0];//t p.substring(0, 1);if (isIncludeSecondaryTitle(p))//(t( || t ){//alert(t);return 2;//二级标题}if (isIncludePrimaryTitle(p))//一级标题{return 1;}if (isIncludeThirdTitle(p))//三级标题{return 3;}return 0; }//getTitleLevel(p)//功能设置段落格式set paragraph format //输入p段落文字 //输出设置格式的文本 function setParaFmt(p) {switch (getTitleLevel(p)){case 1:t setParaTitle1(p);//一级标题break;case 2:t setParaTitle2(p);//二级标题break;case 3:t setParaTitle3(p);//三级标题break;default: //main text正文t p stylemargin:0px; line-height: rs pt; text-indent: sn pt;font-family: mtfn ; font-size: mtfs pt; p;}//switch//taDbg.value \n---setParaFmt: t;return t; }//setParaFmt(p)function getArg() {// 排版内容包括公文标题cbDocTilte document.getElementById(cbDocTilte).checked;//标题字体名 document title font namedtfn document.getElementById(selDocTitleFontName).value;//alert(fn);//标题字号 document title font sizedtfs document.getElementById(selDocTitleFontSize).value;//alert(fs);//标题对齐方式 document title text aligndtta document.getElementById(selDocTitleAlign).value;//一级标题字号 primary title font namept1fn document.getElementById(selPrimaryTitleFontName).value;//一级标题字号 primary titlefont sizept1fs document.getElementById(selPrimaryTitleFontSize).value;//二级标题字号 psecondary title font namest2fn document.getElementById(selSecondaryTitleFontName).value;//二级标题字号 secondary title font sizest2fs document.getElementById(selSecondaryTitleFontSize).value;//二级标题字体加粗 secondary title strongst2Strong document.getElementById(cbSecondaryTitleStrong).checked;//三级标题字体加粗 third title strongtt3Strong document.getElementById(cbThirdTitleStrong).checked;//正文字体名称mtfn document.getElementById(selMainTextFontName).value;//正文字体字号mtfs document.getElementById(selMainTextFontSize).value;//行距 row spacingrs document.getElementById(tbRowSp).value;//首行行首空格数sn document.getElementById(tbLeadSpNum).value*16;//20230729增加*16 }// getArg()//判断dddd年dd月dd日是否符合闰年等规则 //记录2023-07-16创建 String.prototype.isRightDateCn function() {return (/^(?:(?!0000)[0-9]{4}([年]{1})(?:(?:0?[1-9]|1[0-2])\1(?:0?[1-9]|1[0-9]|2[0-8])|(?:0?[13-9]|1[0-2])\1(?:29|30)|(?:0?[13578]|1[02])\1(?:31))|(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:0[48]|[2468][048]|[13579][26])00)([月]{1})0?2\2(?:29))([日]{1})$/.test(this)); }//功能判断是否为dddd年dd月dd日格式 //记录2023-07-16创建 String.prototype.isDateCn function() {//年\u5e74月\u6708日\u65e5//return (/^(\d{4})([\u5e74]{1})(\d{1,2})([\u6708]{1})\d{1,2}([\u65e5]{1})$/.test(this)); return (/^(\d{4})([年]{1})(\d{1,2})([月]{1})\d{1,2}([日]{1})$/.test(this)); }//功能判断是否为落款 //输入t1落款单位,t2落款日期 //输出true是落款false非落款 //记录2023-07-16创建 function isBadging(t1,t2) {if (isAstatement(t1))//落款单位末尾是否带符号{return false;//带符号不是落款}taDbg.value \n--- isBadging()\n t1 \n t2;return (t2.isDateCn()); }//isBadging(t1,t2)//功能利用canvas取字符串宽度 //输入s字符串f字体 //输出字符串宽度 //记录2023-07-22创建 function getStrWidth(s, f) {//alert(s);var canvas getStrWidth.canvas || (getStrWidth.canvas document.createElement(canvas));var ctx canvas.getContext(2d); ctx.font f;return ctx.measureText(s).width; }//geStrWidth()//功能设置落款格式 //输入t1落款单位,t2落款日期 //输出格式化后的落款单位和落款日期代码 //纪录2023-07-16创建 // 2023-07-22修改 function setBadging(t1,t2) {var r new Array();var f mtfs pt mtfn;//顺序不能颠倒//noSealvar iSize1 getStrWidth(t1, f);var iSize2 getStrWidth(t2, f);//document.write(p iSize1 iSize2);if (iSize2 iSize1){//如成文日期长于发文机关署名应当使成文日期右空二字编排并相应增加发文机关署名右空字数。r[0] p styleline-height: rs pt; font-family: mtfn ;font-size: mtfs pt; text-align:right; margin:0 Math.ceil((iSize2 - iSize1)/2 48) px 0 0 t1;//1em16px,36pt32px,3em48pxr[1] p styleline-height: rs pt; font-family: mtfn ;font-size: mtfs pt; text-align:right; margin:0 36pt 0 0 t2;}else{//单一机关行文时在正文或附件说明下空一行右空二字编排发文机关署名在发文机关署名下一行编排成文日期首字比发文机关署名首字右移二字r[0] p styleline-height: rs pt; font-family: mtfn ;font-size: mtfs pt; text-align:right; margin:0 36pt 0 0 t1;r[1] p styleline-height: rs pt; font-family: mtfn ;font-size: mtfs pt; text-align:right; margin: 0 (iSize1 - iSize2) px 0 0 t2;}return r.join(); }//setBadging()//功能判断字符串是否为“附件” //输入p字符串 //输出true是false否 //记录20230726创建 function isAttachmentWithColon(p) {return 附件p.substr(0, 3) ? true : false; }//功能判断字符串中是否包含空白字符包括空格、制表符、换页符等等。等价于 [ \f\n\r\t\v] //输入p字符串 //输出true是false否 //记录20230729创建 function isIncludeSpace(p) {//return 附件p ? true : false;return (-1!p.search(/\s/g) ? true : false); }//功能判断字符串是否为“附s件”“附s件x”“附s件x-x”其中s为空格x为阿拉伯数字 //输入p字符串 //输出true是false否 //记录20230726创建 // 20230729改用isIncludeSpace() function isAttachmentWithSpace(p) {//return (/^(附){1}\s(件){1}([\d|-]*)$/.test(p)); return isIncludeSpace(p); }//功能判断字符串是否为“附件”“附件x”“附件x-x”其中x为阿拉伯数字 //输入p字符串 //输出true是false否 //记录20230726创建 function isAttachment(p) {//return 附件p ? true : false;//return (/^(附件){1}([\d|-]*)$/.test(p)); return (/^(附){1}\s*(件){1}([\d|-]*)$/.test(p)); }//功能判断相连两段文字是否为附件及标题 //输入p1前一段p2后一段 //输出true是false否 //记录20230726创建 function isAttachmentTitle(p1, p2) {if (! isAttachment(p1))//前一段内容是“附件”?{return false;//不是}return (! isAstatement(p2)); //后一段是否为一句话 }//isAttachmentTitle() //功能删除字符串中的所有空格 //记录20230726创建 String.prototype.eliminateSpace function() {return this.replace(/\s*/g,); }//功能设置附件及附件标题格式 //输入p1附件p2附件标题 //输出附件及附件标题格式化后的字符串 //记录20230726创建 function setAttachmentTitleFmt(p1, p2) {//附件 与 附件标题之间要间隔一行//return p stylemargin:0px; font-family:黑体; font-size: mtfs pt; line-height: rs p1 /pp stylemargin:0px; font-size:28pt; line-height: rs nbsp;/pp stylemargin:0px; text-align:center; font-family: dtfn ; font-size: dtfs pt; line-height: rs p2 /p;return p stylemargin:0px; font-family:黑体; font-size: mtfs pt; line-height: rs pt (isAttachmentWithSpace(p1) ? (p1.eliminateSpace() g_sWarmPromptLeft g_sWarmPromptTxt 本行多余的空格已删除 g_sWarmPromptRight) : p1) /pp stylemargin:0px; font-size: mtfs pt; line-height: rs ptnbsp;/pp stylemargin:0px; text-align:center; font-family: dtfn ; font-size: dtfs pt; line-height: rs pt p2 /p; }//setAttachmentTitleFmt(p1, p2)//功能判断是否为以半角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonEn(p) {return /.*(:){1}\s*$/gi.test(p); } //功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDeWithColonCn(p) {//return (p.substring(p.length-1) ? true : false);return /.*(){1}\s*$/gi.test(p); }//功能设置主送机关行格式main delivery department //输入p送机关行字符串 //输出主送机关行格式化字符串 //记录20230729创建 function setMainDeDe(s) {taDbg.value \n---setMainDeDe()\n;var p s;var a null;if (isIncludeSpace(p)){p p.eliminateSpace();a 已删除多余的字符;}if (isMainDeDeWithColonEn(p)){p p.replaceAll(:, );a ((nulla) ? null : ) 半角冒号已转为全角冒号;}p p stylemargin:0px; line-height: rs pt; font-family: mtfn ; font-size: mtfs pt; p;if (null ! a){p g_sWarmPromptLeft g_sWarmPromptTxt a g_sWarmPromptRight;}taDbg.value p \n;return p; }//setMainDeDe()//功能判断是否为以全角冒号结束的主送机关main delivery department //输入p字符串 //输出true是false否 //更新20230729创建 function isMainDeDe(p) {//return (isMainDeDeWithColonCn(p) | isMainDeDeWithColonEn(p) ? true : false);return /.*(|:){1}\s*$/gi.test(p); } //功能设置公文格式Set document format //输入无 //输出无 //记录20230726添加对附件及附件标题格式的处理代码 // 20230729添加对主送单位格式的处理代码 function setDocFmt() {taDbg.value \n---setDocFmt()\n;getArg(); //读取预设参数var t getClearInfoArray();//标题if (cbDocTilte){t[0] setDocTitle(t[0]) /pp stylemargin:0px; line-height: rs nbsp;;}var i (cbDocTilte ? 1 : 0);//2023-07-26增加while (i t.length){if (i t.length-1)//20230716增加{if (isBadging(t[i],t[i1]))//是落款{//落款前加空行t[i-1] /pp stylemargin:0px; line-height: rs nbsp;;//设置落款t[i] setBadging(t[i],t[i1]);t[i1] null;taDbg.value \nt[ (i-1) ] t[i-1] \nt[ i ] t[i] \nt[ (i1) ] t[i1];//i;//i;i 2;continue;}if (isAttachmentTitle(t[i],t[i1])) //是附件及附件标题{t[i] setAttachmentTitleFmt(t[i],t[i1]);t[i1] null;taDbg.value \nt[ (i-1) ] t[i-1] \nt[ i ] t[i] \nt[ (i1) ] t[i1];//i;//i;i 2;continue;}}//ifif (isMainDeDe(t[i]))//是主送单位吗20230729增{t[i] setMainDeDe(t[i]);//是i;continue;}t[i] setParaFmt(t[i]);i;}//while()//alert(t.join());edRichBody.innerHTML t.join(); }//setDocFmt() /script/headbody fieldset stylewidth: 1100px;legend实时编辑区/legend iframe ideditor width1200px height400px styleborder: solid 1px;/iframe /fieldset pinput typebutton idbtnclearDocFmt value清除格式 onclickclearDocFmt() /input typebutton idbtnsetDocFmt value一键排版 onclicksetDocFmt() /input typebutton idbtnShowSrc value显示源码 onclickshowSrc() stylebackground:yellow; border-radius: 25px; /input typebutton idbtnB valueB title加粗/正常 stylefont-weight:bolder onclickexecCmd(bold,false,null) /input typebutton idbtnItalic valueI title斜体/正常 stylefont-weight:bolder;font-style:italic onclickexecCmd(italic,false,null) /input typebutton idbtnUnderline valueI title下划线 stylefont-weight:bolder;text-decoration:underline onclickexecCmd(underline,false,null) / /p fieldset stylewidth: 1200px;legend参数设置/legend公文标题input typecheckbox checked idcbDocTilte排版内容包括公文标题scriptshowFontNameSel(selDocTitleFontName, 0);document.write( );showFontSizeSel(selDocTitleFontSize, 4);document.write( );showAlignSel(selDocTitleAlign, 1);/scriptp正文一级标题scriptshowFontNameSel(selPrimaryTitleFontName, 1);document.write( );showFontSizeSel(selPrimaryTitleFontSize, 6);/script/pp正文二级标题scriptshowFontNameSel(selSecondaryTitleFontName, 5);document.write( );showFontSizeSel(selSecondaryTitleFontSize, 6);/scriptinput typecheckbox checked idcbSecondaryTitleStrong粗体/pp正文三级标题input typecheckbox checked idcbThirdTitleStrong粗体/pp正文 scriptshowFontNameSel(selMainTextFontName, 3);document.write( );showFontSizeSel(selMainTextFontSize, 6);document.write( );/script行距行间距input typetext idtbRowSp value28 size2!-- row spacing//--  段落首行行首空格数input typetext idtbLeadSpNum value2 size2/P/fieldsetp调试信息/p textarea idtaDbg stylewidth: 1225px; height: 200px调试信息/textareascript typetext/javascriptconst edRich document.getElementById(editor); const taDbg document.getElementById(taDbg); const btnShowSrc document.getElementById(btnShowSrc);//排版内容是否包括公文标题 var cbDocTilte; // document.getElementById(cbDocTilte).value; //标题字体名 document title font name var dtfn; // document.getElementById(selDocTitleFontName).value; //标题字号 document title font size var dtfs; // document.getElementById(selDocTitleFontSize).value; //标题对齐方式 document title text align var dtta;// document.getElementById(selDocTitleAlign).value;//一级标题字号 font name var pt1fn; // document.getElementById(selPrimaryTitleFontName).value; //一级标题字号 font size var pt1fs; // document.getElementById(selPrimaryTitleFontSize).value;//二级标题字号 psecondary title font name var st2fn; // document.getElementById(selSecondaryTitleFontName).value; //二级标题字号 secondary title font size var st2fs; // document.getElementById(selSecondaryTitleFontSize).value; //二级标题字体加粗 secondary title strong var st2Strong; // document.getElementById(cbSecondaryTitleStrong).value;//三级标题字体加粗 third title strong var tt3Strong; // document.getElementById(cbThirdTitleStrong).value;//行距 row spacingvar rs; // document.getElementById(tbRowSp).value; //首行行首空格数var sn; // document.getElementById(tbLeadSpNum).value;//正文字体名称 var mtfn; // document.getElementById(selMainTextFontName).value;//正文字体字号 var mtfs; // document.getElementById(selMainTextFontSize).value; var edRichDoc; var edRichBody; //var edRichHTML; if (typeof(edRich) !undefined){edRichDoc edRich.contentWindow.document;edRichDoc.designMode on;edRichDoc.contentEditable true;edRichBody edRichDoc.body;edRichBody.innerHTML pa hrefhttp://blog.csdn.net/purpleendurerhttp://blog.csdn.net/purpleendurer/a/pp/pp stylefont-family:方正小标宋简体;font-size:22pt; text-align:center; line-height:28pt;p aligncenter styletext-align:center;text-indent:24.0pt;line-height:28.0ptspan langEN-US stylefont-size:22.0pt;font-family:方正小标宋简体;mso-hansi-font-family:黑体;color:blackSQL/spanspan stylefont-size:22.0pt;font-family:方正小标宋简体;mso-hansi-font-family:黑体;color:black注入基础span langEN-USo:p/o:p/span/span/pp styletext-indent:2em;河池市××局、 市×× 局 /pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0pxspan stylefont-size:16.0pt;font-family:黑体;color:black一、span langEN-USSQL/span注入分类span langEN-USo:p/o:p/span/span/pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0pxbspan stylefont-size:16.0pt;font-family:楷体_GB2312;color:black一什么是span langEN-USSQL/span注入span langEN-US?o:p/o:p/span/span/b/pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0pxspan langEN-US stylefont-size:16.0pt;font-family:仿宋_GB2312;color:blackSLQ/spanspan stylefont-size:16.0pt;font-family:仿宋_GB2312;color:black注入span langEN-US(/span英文span langEN-US: Sqlinject)/span当span langEN-USweb/span应用向后台数据库传递span langEN-USSQL/span语句进行数据库操作时如果对用户输入的参数没有经过严格的过滤那么用户可以构造特殊的span langEN-USsq1/span语句从而带入到数据库中执行获取或修改数据库中的数据。span langEN-USo:p/o:p/span/span/pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0pxspan stylefont-size:16.0pt;color:blacknbsp;nbsp;1.加强技术学习。一要span langEN-USo:p/o:p/span/span/pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0pxspan stylefont-size:16.0pt;color:blacknbsp;nbsp;2.强化安全保障。一要。span langEN-USo:p/o:p/span/span/pp测试1/pp styletext-indent:24.0pt;line-height:28.0pt;font-variant-ligatures: normal;font-variant-caps: normal;orphans: 2;text-align:start;widows: 2;-webkit-text-stroke-width: 0px;text-decoration-thickness: initial;text-decoration-style: initial;text-decoration-color: initial;word-spacing:0px河池市××××局/pp2023年7月22日/pp测试2/pp广西壮族自治区河池市××××局/pp2023年7月22日/pp测试3/pp河池市××局/pp2023年7月22日/pp测试4/pp河池市×局/pp2023年7月22日/pp附件/pp附件标题/pp附件/pp附件标题/pp附 件/pp附件标题/p; } else {window.alert(undefined); }function replaceStr(s1,s2) {try{var r document.body.createTextRange();if (r.findText(s1)){r.expand(charactor);r.select();r.text s2;r.scrollIntoView();}else{alert(s not found!);}}catch (e){alert(e.description);} }function showSrc() {if (btnShowSrc.value显示源码){edRichBody.innerText edRichBody.innerHTML;//edRichBody.innerText edRichBody.innerHTML.replace(/p,/pchr(10)); //edRichBody.innerText edRichBody.innerText.replace(\/p,\/pchr(10)chr(13)); btnShowSrc.value 显示预览;btnShowSrc.style.background cyan;}else{edRichBody.innerHTML edRichBody.innerText;//edRichBody.innerHTML edRichBody.innerText.replace(chr(10)chr(13),);btnShowSrc.value 显示源码;btnShowSrc.style.background yellow;} }function execCmd(cmd,f,v) {edRichDoc.execCommand(cmd,f,v); } /script /body /html
http://www.ho-use.cn/article/10818509.html

相关文章:

  • 南宁网站建设业务员百度网盟推广合作网站
  • 高端企业网站建设公司群晖wordpress不成功
  • 找网络公司做的网站可以出售吗百度创建网站
  • 岳阳高端网站建设定制网站对公司有什么好处
  • 广东手机网站建设哪家好深圳网站建设最好
  • 学做土建资料员的网站别人做的网站域名到期怎么办
  • 为什么网站用静态页面深圳网站建设高端设计
  • 2024年3月新冠高峰seo优化广告
  • 运动器材网站建设wordpress数据库设置密码
  • 企业网站如何seo建立一个网站需要哪些
  • 上海展台设计巩义seo
  • 网站 防 恶意注册建设银行 商户网站打不开
  • 正规的佛山网站建设价格江苏网站建设系统方案
  • 做网站必须要服务器吗昆明抖音代运营公司
  • 石家庄网站建设今天改网名wordpress 慢的上天
  • 重庆汽车网站建设用c 做的网站怎么打开
  • 网站建设 总体思路南通营销网站制作
  • 大尺度做爰网站在线长沙关键词优化推荐
  • 莱芜关于网站建设的公司最新免费网站源码
  • 怎么搭建局域网网站济源做网站的公司
  • 北京公司网站建设服务硬件开发工程师是干什么的
  • 常州网站公司网站太仓网站开发
  • 重庆市做网站的公司有哪些dede手机网站模板
  • 网站推广官方平台公司做网站发生的费用分录
  • 微信公众号网站制作建设自己的二手房中介网站
  • 广东圆心网站开发简洁高端的wordpress个人博客
  • 做建材的网站优秀的网页模板网站
  • 免费询盘网站wordpress首页打开变慢
  • 新视网站建设联系qq雅奇小蘑菇做网站好不好用
  • 素材网站的图可以做海报吗wordpress多媒体mp4