最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501
当前位置: 首页 - 科技 - 知识百科 - 正文

一个符号插入器中用到的js代码_javascript技巧

来源:懂视网 责编:小采 时间:2020-11-27 20:37:59
文档

一个符号插入器中用到的js代码_javascript技巧

一个符号插入器中用到的js代码_javascript技巧:/** * @author tin555 */ function setHTML(html) { ContentEdit.value = html; eWebEditor.document.designMode=On; eWebEditor.document.open(); eWebEditor.document.write(html); eWebEditor.document.body.contentEditable=true; eWebEditor
推荐度:
导读一个符号插入器中用到的js代码_javascript技巧:/** * @author tin555 */ function setHTML(html) { ContentEdit.value = html; eWebEditor.document.designMode=On; eWebEditor.document.open(); eWebEditor.document.write(html); eWebEditor.document.body.contentEditable=true; eWebEditor

/**
* @author tin555
*/
function setHTML(html) {
ContentEdit.value = html;
eWebEditor.document.designMode="On";
eWebEditor.document.open();
eWebEditor.document.write(html);
eWebEditor.document.body.contentEditable="true";
eWebEditor.document.execCommand("2D-Position",true,true);
eWebEditor.document.execCommand("MultipleSelection", true, true);
eWebEditor.document.execCommand("LiveResize", true, true);
eWebEditor.document.close();
eWebEditor.document.body.onpaste = onPaste ;
//eWebEditor.document.body.onhelp = onHelp ;
//eWebEditor.document.body.ondragend = new Function("return doDragEnd();");
eWebEditor.document.onkeydown = new Function("return onKeyDown(eWebEditor.event);");
//eWebEditor.document.oncontextmenu=new Function("return showContextMenu(eWebEditor.event);");
//eWebEditor.document.onmousedown = new Function("return onMouseDown();");
//eWebEditor.document.onmouseup = new Function("return onMouseUp();");
}

function getHTML() {
var html;

html = eWebEditor.document.body.innerHTML;


if ((html.toLowerCase()=="")||(html.toLowerCase()=="")){
html = "";
}

return html;
}


function insertHTML(html) {

eWebEditor.focus();
if (eWebEditor.document.selection.type.toLowerCase() != "none"){
eWebEditor.document.selection.clear() ;
}
eWebEditor.document.selection.createRange().pasteHTML(html) ;
}

function appendHTML(html) {
if (eWebEditor.document.selection.type.toLowerCase() != "none"){
eWebEditor.document.selection.clear() ;
}
eWebEditor.document.body.innerHTML += html;

}


function doDragEnd(){
var oSelection = eWebEditor.document.selection.createRange();
var sRangeType = eWebEditor.document.selection.type;
if (sRangeType == "Control") {
var oControl = oSelection.item(0);
if (oControl.tagName == "IMG"){
oControl.src = FullPath2SetPath(oControl.src);
}
}
if (sRangeType == "Text") {
var els = eWebEditor.document.body.getElementsByTagName("IMG");
var oRngTemp = eWebEditor.document.body.createTextRange();
for(var i=0;i oRngTemp.moveToElementText(els(i));
if (oSelection.inRange(oRngTemp)){
els(i).src = FullPath2SetPath(els(i).src)
}
}
}

return true;
}


function onKeyDown(event){
var n_KeyCode = event.keyCode;
if (n_KeyCode==13){
return false;
}
}

var oResizing = new Object;
function onMouseDown(){
oResizing.El = null;
if (eWebEditor.document.selection.type == "Control") {
var oControlRange = eWebEditor.document.selection.createRange();
oResizing.El = oControlRange(0);
oResizing.W = oResizing.El.style.width;
oResizing.H = oResizing.El.style.height;
}


}

function GetClipboardHTML() {
var oDiv = document.getElementById("eWebEditor_Temp_HTML");
oDiv.innerHTML = "" ;
var oTextRange = document.body.createTextRange() ;
oTextRange.moveToElementText(oDiv) ;
oTextRange.execCommand("Paste") ;

var sData = oDiv.innerHTML ;
oDiv.innerHTML = "" ;

return sData ;
}


function cleanAndPaste( html ) {
html = html.replace(/<\/?SPAN[^>]*>/gi, "" );
html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
html = html.replace(/<(\w[^>]*) style="([^"]*)"([^>]*)/gi, "<$1$3") ;
html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
html = html.replace(/<\\?\?xml[^>]*>/gi, "") ;
html = html.replace(/<\/?\w+:[^>]*>/gi, "") ;
html = html.replace(/ /, " " );

insertHTML( html ) ;
}
function onPaste() {
var sHTML = GetClipboardHTML() ;
var re = /<\w[^>]* class="?MsoNormal"?/gi ;
if ( re.test(sHTML)){
if ( confirm("你要粘贴的内容好象是从Word中拷出来的,是否要先清除Word格式再粘贴?") ){
cleanAndPaste( sHTML ) ;
return false ;
}
}
}

声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文档

一个符号插入器中用到的js代码_javascript技巧

一个符号插入器中用到的js代码_javascript技巧:/** * @author tin555 */ function setHTML(html) { ContentEdit.value = html; eWebEditor.document.designMode=On; eWebEditor.document.open(); eWebEditor.document.write(html); eWebEditor.document.body.contentEditable=true; eWebEditor
推荐度:
标签: js 符号 添加至
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top