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;
}
return true; var oResizing = new Object; function GetClipboardHTML() { var sData = oDiv.innerHTML ; return sData ; insertHTML( html ) ; 声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
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
if (oSelection.inRange(oRngTemp)){
els(i).src = FullPath2SetPath(els(i).src)
}
}
}
}
function onKeyDown(event){
var n_KeyCode = event.keyCode;
if (n_KeyCode==13){
return false;
}
}
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;
}
}
var oDiv = document.getElementById("eWebEditor_Temp_HTML");
oDiv.innerHTML = "" ;
var oTextRange = document.body.createTextRange() ;
oTextRange.moveToElementText(oDiv) ;
oTextRange.execCommand("Paste") ;
oDiv.innerHTML = "" ;
}
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(/ /, " " );
}
function onPaste() {
var sHTML = GetClipboardHTML() ;
var re = /<\w[^>]* class="?MsoNormal"?/gi ;
if ( re.test(sHTML)){
if ( confirm("你要粘贴的内容好象是从Word中拷出来的,是否要先清除Word格式再粘贴?") ){
cleanAndPaste( sHTML ) ;
return false ;
}
}
}