table_size.js

来自「从此不再用那些文章系统来做图片站了!有了专业的图片站程序了! 1:采用MSSQL」· JavaScript 代码 · 共 38 行

JS
38
字号
function loadTxt()    {    var txtLang =  document.getElementsByName("txtLang");    txtLang[0].innerHTML = "Sett inn rad";    txtLang[1].innerHTML = "Sett inn kolonne";    txtLang[2].innerHTML = "Flett rad";    txtLang[3].innerHTML = "Flett kolonne";    txtLang[4].innerHTML = "Slett rad";    txtLang[5].innerHTML = "Slett kolonne";	document.getElementById("btnInsRowAbove").title="Sett inn rad (Above)";	document.getElementById("btnInsRowBelow").title="Sett inn rad (Below)";	document.getElementById("btnInsColLeft").title="Sett inn kolonne (Left)";	document.getElementById("btnInsColRight").title="Sett inn kolonne (Right)";	document.getElementById("btnIncRowSpan").title="Increase Rowspan";	document.getElementById("btnDecRowSpan").title="Decrease Rowspan";	document.getElementById("btnIncColSpan").title="Increase Colspan";	document.getElementById("btnDecColSpan").title="Decrease Colspan";	document.getElementById("btnDelRow").title="Slett rad";	document.getElementById("btnDelCol").title="Slett kolonne";	document.getElementById("btnClose").value = " Lukk ";    }function getTxt(s)    {    switch(s)        {        case "Cannot delete column.":            return "Cannot delete column. The column contains spanned cells from another column. Please remove the span first.";        case "Cannot delete row.":            return "Cannot delete row. The row contains spanned cells from another rows. Please remove the span first.";        default:return "";        }    }function writeTitle()    {    document.write("<title>Celler&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</title>")    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?