📄 dhtmledit1.js
字号:
ran=rand();
var string;
var ubbstring;
//string="<object align=center classid=CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95 hspace=5 vspace=5 width="+ width +" height="+ height +"><param name=Filename value="+ path +"><param name=ShowStatusBar value=1><embed type=application/x-oleobject codebase=http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701 flename=mp src="+ path +" width="+ width +" height="+ height +"></embed></object>";
//string="<EMBED id=MediaPlayer"+ran+" src="+ path +" width="+ width +" height="+ height +" autostart=\""+ autostart +"\" loop=\"false\"></EMBED><p></p>";
string="[MP="+ width +","+ height +","+ autostart +"]"+ path +"[/MP]";
IframeID.document.body.innerHTML+=string;
}
else IframeID.focus();
}
function rand() {
return parseInt((1000)*Math.random()+1);
}
function Newasp_forrm()
{
var arr = showModalDialog("images/post/rm.htm", "", "dialogWidth:30em; dialogHeight:13em; status:0; help:0");
if (arr != null)
{
var ss;
ss = arr.split("*")
path = ss[0];
row = ss[1];
col = ss[2];
autostart = ss[3];
ran = rand();
var string;
//string="<object classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' width='"+row+"' height='"+col+"'><param name='CONTROLS' value='ImageWindow'><param name='CONSOLE' value='Clip'><param name='AUTOSTART' value='"+ autostart +"'><param name=src value="+path+"></object><br><object classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' width="+row+" height=32><param name='CONTROLS' value='ControlPanel,StatusBar'><param name='CONSOLE' value='Clip'></object>";
string = "[RM="+ row +","+ col +","+ autostart +"]"+ path +"[/RM]";
IframeID.document.body.innerHTML+=string;
}
else IframeID.focus();
}
//图片与链接事件
function Newasp_UserDialog(what)
{
if (!Newasp_validateMode()) return;
IframeID.focus();
if (what == "CreateLink") {
if (Newasp_bIsNC)
{
insertLink = prompt("请填写超级链接地址信息:", "http://");
if ((insertLink != null) && (insertLink != "") && (insertLink != "undefined")) {
IframeID.document.execCommand('CreateLink', false, insertLink);
}else{
IframeID.document.execCommand('unlink', false, null);
}
}
else {
IframeID.document.execCommand(what, true, null);
}
}
//去掉添加图片时的src="file://
if(what == "InsertImage"){
imagePath = prompt('请填写图片链接地址信息:', 'http://');
if ((imagePath != null) && (imagePath != "")) {
IframeID.document.execCommand('InsertImage', false, imagePath);
}
IframeID.document.body.innerHTML = (IframeID.document.body.innerHTML).replace("src=\"file://","src=\"");
}
Newasp_pureText = false;
IframeID.focus();
}
//--------------------
function Newasp_GetRangeReference(editor)
{
editor.focus();
var objReference = null;
var RangeType = editor.document.selection.type;
var selectedRange = editor.document.selection.createRange();
switch(RangeType)
{
case 'Control' :
if (selectedRange.length > 0 )
{
objReference = selectedRange.item(0);
}
break;
case 'None' :
objReference = selectedRange.parentElement();
break;
case 'Text' :
objReference = selectedRange.parentElement();
break;
}
return objReference
}
function Newasp_CheckTag(item,tagName)
{
if (item.tagName.search(tagName)!= -1)
{
return item;
}
if (item.tagName == 'BODY')
{
return false;
}
item=item.parentElement;
return Newasp_CheckTag(item,tagName);
}
function Newasp_code()
{
//Newasp_specialtype("<div class=HtmlCode style='cursor: pointer'; title='点击运行该代码!' onclick=\"preWin=window.open('','','');preWin.document.open();preWin.document.write(this.innerText);preWin.document.close();\">","</div>");
Newasp_specialtype("<div class=HtmlCode>","</div>");
}
function Newasp_replace()
{
var arr = showModalDialog("images/post/replace.html", "", "dialogWidth:16.5em; dialogHeight:13em; status:0; help:0");
if (arr != null){
var ss;
ss = arr.split("*")
a = ss[0];
b = ss[1];
i = ss[2];
con = IframeID.document.body.innerHTML;
if (i == 1)
{
con = Newasp_rCode(con,a,b,true);
}else{
con = Newasp_rCode(con,a,b);
}
IframeID.document.body.innerHTML = con;
}
else IframeID.focus();
}
function insertSpecialChar()
{
var arr = showModalDialog("images/post/specialchar.html", "","dialogWidth:25em; dialogHeight:15em; status:0; help:0");
if (arr != null) Newasp_InsertSymbol(arr);
IframeID.focus() ;
}
function doZoom( sizeCombo )
{
if (sizeCombo.value != null || sizeCombo.value != "")
if (Newasp_bIsIE5){
var z = IframeID.document.body.runtimeStyle;}
else{
var z = IframeID.document.body.style;
}
z.zoom = sizeCombo.value + "%" ;
}
//--------------------
function Newasp_fortable()
{
if (!Newasp_validateMode()) return;
IframeID.focus();
var arr = showModalDialog("images/post/table.html", window, "dialogWidth:22em; dialogHeight:18em; status:0; help:0;scroll:no;");
if (arr)
{
IframeID.document.body.innerHTML+=arr;
}
IframeID.focus();
}
function Newasp_InsertRow()
{
editor = IframeID;
objReference = Newasp_GetRangeReference(editor);
objReference = Newasp_CheckTag(objReference,'/^(TABLE)|^(TR)|^(TD)|^(TBODY)/');
switch(objReference.tagName)
{
case 'TABLE' :
var newTable = objReference.cloneNode(true);
var newRow = newTable.insertRow();
for(x = 0; x<newTable.rows[0].cells.length; x++)
{
var newCell = newRow.insertCell();
}
objReference.outerHTML = newTable.outerHTML;
break;
case 'TBODY' :
var newTable = objReference.cloneNode(true);
var newRow = newTable.insertRow();
for(x = 0; x<newTable.rows[0].cells.length; x++)
{
var newCell = newRow.insertCell();
}
objReference.outerHTML=newTable.outerHTML;
break;
case 'TR' :
var rowIndex = objReference.rowIndex;
var parentTable = objReference.parentElement.parentElement;
var newTable = parentTable.cloneNode(true);
var newRow = newTable.insertRow(rowIndex+1);
for(x = 0; x< newTable.rows[0].cells.length; x++)
{
var newCell = newRow.insertCell();
}
parentTable.outerHTML = newTable.outerHTML;
break;
case 'TD' :
var parentRow = objReference.parentElement;
var rowIndex = parentRow.rowIndex;
var cellIndex = objReference.cellIndex;
var parentTable = objReference.parentElement.parentElement.parentElement;
var newTable = parentTable.cloneNode(true);
var newRow = newTable.insertRow(rowIndex+1);
for(x = 0; x< newTable.rows[0].cells.length; x++)
{
var newCell = newRow.insertCell();
if (x == cellIndex)newCell.id='ura';
}
parentTable.outerHTML = newTable.outerHTML;
var r = editor.document.body.createTextRange();
var item = editor.document.getElementById('ura');
item.id = '';
r.moveToElementText(item);
r.moveStart('character',r.text.length);
r.select();
break;
default :
return;
}
}
function Newasp_DeleteRow()
{
editor=IframeID;
objReference=Newasp_GetRangeReference(editor);
objReference=Newasp_CheckTag(objReference,'/^(TABLE)|^(TR)|^(TD)|^(TBODY)/');
switch(objReference.tagName)
{
case 'TR' :var rowIndex = objReference.rowIndex;//Get rowIndex
var parentTable=objReference.parentElement.parentElement;
parentTable.deleteRow(rowIndex);
break;
case 'TD' :var cellIndex=objReference.cellIndex;
var parentRow=objReference.parentElement;//Get Parent Row
var rowIndex = parentRow.rowIndex;//Get rowIndex
var parentTable=objReference.parentElement.parentElement.parentElement;
parentTable.deleteRow(rowIndex);
if (rowIndex>=parentTable.rows.length)
{
rowIndex=parentTable.rows.length-1;
}
if (rowIndex>=0)
{
var r = editor.document.body.createTextRange();
r.moveToElementText(parentTable.rows[rowIndex].cells[cellIndex]);
r.moveStart('character',r.text.length);
r.select();
}
else
{
parentTable.removeNode(true);
}
break;
default :return;
}
}
function Newasp_InsertColumn()
{
editor = IframeID;
objReference= Newasp_GetRangeReference(editor);
objReference=Newasp_CheckTag(objReference,'/^(TABLE)|^(TR)|^(TD)|^(TBODY)/');
switch(objReference.tagName)
{
case 'TABLE' :// IF a table is selected, it adds a new column on the right hand side of the table.
var newTable=objReference.cloneNode(true);
for(x=0; x<newTable.rows.length; x++)
{
var newCell = newTable.rows[x].insertCell();
}
newCell.focus();
objReference.outerHTML=newTable.outerHTML;
break;
case 'TBODY' :// IF a table is selected, it adds a new column on the right hand side of the table.
var newTable=objReference.cloneNode(true);
for(x=0; x<newTable.rows.length; x++)
{
var newCell = newTable.rows[x].insertCell();
}
objReference.outerHTML=newTable.outerHTML;
break;
case 'TR' :// IF a table is selected, it adds a new column on the right hand side of the table.
objReference=objReference.parentElement.parentElement;
var newTable=objReference.cloneNode(true);
for(x=0; x<newTable.rows.length; x++)
{
var newCell = newTable.rows[x].insertCell();
}
objReference.outerHTML=newTable.outerHTML;
break;
case 'TD' :// IF the cursor is in a cell, or a cell is selected, it adds a new column to the right of that cell.
var cellIndex = objReference.cellIndex;//Get cellIndex
var rowIndex=objReference.parentElement.rowIndex;
var parentTable=objReference.parentElement.parentElement.parentElement;
var newTable=parentTable.cloneNode(true);
for(x=0; x<newTable.rows.length; x++)
{
var newCell = newTable.rows[x].insertCell(cellIndex+1);
if (x==rowIndex)newCell.id='ura';
}
parentTable.outerHTML=newTable.outerHTML;
var r = editor.document.body.createTextRange();
var item=editor.document.getElementById('ura');
item.id='';
r.moveToElementText(item);
r.moveStart('character',r.text.length);
r.select();
break;
default :
return;
}
}
function Newasp_DeleteColumn()
{
editor = IframeID;
objReference=Newasp_GetRangeReference(editor);
objReference=Newasp_CheckTag(objReference,'/^(TABLE)|^(TR)|^(TD)|^(TBODY)/');
switch(objReference.tagName)
{
case 'TD' :var rowIndex=objReference.parentElement.rowIndex;
var cellIndex = objReference.cellIndex;//Get cellIndex
var parentTable=objReference.parentElement.parentElement.parentElement;
var newTable=parentTable.cloneNode(true);
if (newTable.rows[0].cells.length==1)
{
parentTable.removeNode(true);
return;
}
for(x=0; x<newTable.rows.length; x++)
{
if (newTable.rows[x].cells[cellIndex]=='[object]')
{
newTable.rows[x].deleteCell(cellIndex);
}
}
if (cellIndex>=newTable.rows[0].cells.length)
{
cellIndex=newTable.rows[0].cells.length-1;
}
if (cellIndex>=0) newTable.rows[rowIndex].cells[cellIndex].id='ura';
parentTable.outerHTML=newTable.outerHTML;
if (cellIndex>=0){
var r = editor.document.body.createTextRange();
var item=editor.document.getElementById('ura');
item.id='';
r.moveToElementText(item);
r.moveStart('character',r.text.length);
r.select();
}
break;
default :return;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -