?? postcode.js
字號:
?var text = "";
function submitonce(theform)
{
if (document.all||document.getElementById)
{
for (i=0;i<theform.length;i++)
{
var tempobj=theform.elements[i];
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
tempobj.disabled=true;
}
}
}
function AddText(NewCode)
{
if (document.FORM.msg.createTextRange && document.FORM.msg.caretPos)
{
var caretPos = document.FORM.msg.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? NewCode + ' ' : NewCode;
}
else
{
document.FORM.msg.value+=NewCode
}
setfocus();
}
function setfocus()
{
document.FORM.msg.focus();
}
helpmode = false;
divmode = false;
nomode = true;
function checkmode(swtch){
if (swtch == 1){
nomode = false;
divmode = false;
helpmode = true;
alert("99mill 代碼 - 幫助信息\n\n點(diǎn)擊相應(yīng)的代碼按鈕即可獲得相應(yīng)的說明和提示");
} else if (swtch == 0) {
helpmode = false;
divmode = false;
nomode = true;
alert("99mill 代碼 - 直接插入\n\n點(diǎn)擊代碼按鈕后不出現(xiàn)提示即直接插入相應(yīng)代碼");
} else if (swtch == 2) {
helpmode = false;
nomode = false;
divmode = true;
alert("99mill 代碼 - 提示插入\n\n點(diǎn)擊代碼按鈕后出現(xiàn)向?qū)Т翱趲椭瓿纱a插入");
}
}
function showsize(size) {
if (helpmode) {
alert("文字大小標(biāo)記\n設(shè)置文字大小.\n可變范圍 1 - 6.\n 1 為最小 6 為最大.\n用法: [size="+size+"]這是 "+size+" 文字[/size]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[size="+size+"]"+text+"[/size]";
AddText(AddTxt);
} else {
txt=prompt("大小 "+size,"文字");
if (txt!=null) {
AddTxt="[size="+size+"]"+txt;
AddText(AddTxt);
AddTxt="[/size]";
AddText(AddTxt);
}
}
}
function showcolor(color) {
if (helpmode) {
alert("顏色標(biāo)記\n設(shè)置文本顏色. 任何顏色名都可以被使用.\n用法: [span class="+color+"]顏色要改變?yōu)?quot;+color+"的文字[/span]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[span class="+color+"]"+text+"[/span]";
AddText(AddTxt);
} else {
txt=prompt("選擇的顏色是: "+color,"文字");
if(txt!=null) {
AddTxt="[span class="+color+"]"+txt;
AddText(AddTxt);
AddTxt="[/span]";
AddText(AddTxt);
}
}
}
function bold() {
if (helpmode) {
alert("加粗標(biāo)記\n使文本加粗.\n用法: [b]這是加粗的文字[/b]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[b]"+text+"[/b]";
AddText(AddTxt);
} else {
txt=prompt("文字將被變粗.","文字");
if (txt!=null) {
AddTxt="[b]"+txt;
AddText(AddTxt);
AddTxt="[/b]";
AddText(AddTxt);
}
}
}
function italicize() {
if (helpmode) {
alert("斜體標(biāo)記\n使文本字體變?yōu)樾斌w.\n用法: [i]這是斜體字[/i]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[i]"+text+"[/i]";
AddText(AddTxt);
} else {
txt=prompt("文字將變斜體","文字");
if (txt!=null) {
AddTxt="[i]"+txt;
AddText(AddTxt);
AddTxt="[/i]";
AddText(AddTxt);
}
}
}
function underline() {
if (helpmode) {
alert("下劃線標(biāo)記\n給文字加下劃線.\n用法: [u]要加下劃線的文字[/u]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[u]"+text+"[/u]";
AddText(AddTxt);
} else {
txt=prompt("下劃線文字.","文字");
if (txt!=null) {
AddTxt="[u]"+txt;
AddText(AddTxt);
AddTxt="[/u]";
AddText(AddTxt);
}
}
}
function center() {
if (helpmode) {
alert("對齊標(biāo)記\n使用這個標(biāo)記, 可以使文本左對齊、居中、右對齊.\n用法: [align=center|left|right]要對齊的文本[/align]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[align=center]"+text+"[/align]";
AddText(AddTxt);
} else {
txt2=prompt("對齊樣式\n輸入 'center' 表示居中, 'left' 表示左對齊, 'right' 表示右對齊.","center");
while ((txt2!="") && (txt2!="center") && (txt2!="left") && (txt2!="right") && (txt2!=null)) {
txt2=prompt("錯誤!\n類型只能輸入 'center' 、 'left' 或者 'right'.","");
}
txt=prompt("要對齊的文本","文本");
if (txt!=null) {
AddTxt="\r[align="+txt2+"]"+txt;
AddText(AddTxt);
AddTxt="[/align]";
AddText(AddTxt);
}
}
}
function quote() {
if (helpmode){
alert("引用標(biāo)記\n引用一些文字.\n用法: [quote]引用內(nèi)容[/quote]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[quote]"+text+"[/quote]";
AddText(AddTxt);
} else {
txt=prompt("被引用的文字","文字");
if(txt!=null) {
AddTxt="[quote]"+txt;
AddText(AddTxt);
AddTxt="[/quote]";
AddText(AddTxt);
}
}
}
function image() {
if (helpmode){
alert("圖片標(biāo)記\n插入圖片\n用法: [img]http:\/\/www.99mill.com\/images\/php.gif[/img]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[img]"+text+"[/img]";
AddText(AddTxt);
} else {
txt=prompt("圖片的 URL","http://");
if(txt!=null) {
AddTxt="\r[img]"+txt;
AddText(AddTxt);
AddTxt="[/img]";
AddText(AddTxt);
}
}
}
function code() {
if (helpmode) {
alert("代碼標(biāo)記\n使用代碼標(biāo)記,可以使你的程序代碼里面的 html 等標(biāo)志不會被破壞.\n使用方法:\n [code]這里是代碼文字[/code]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[code]"+text+"[/code]";
AddText(AddTxt);
} else {
txt=prompt("輸入代碼","");
if (txt!=null) {
AddTxt="[code]"+txt;
AddText(AddTxt);
AddTxt="[/code]";
AddText(AddTxt);
}
}
}
//////////////////////////////////
function copytext(theField)
{
var tempval=eval("document."+theField);
tempval.focus();
tempval.select();
therange=tempval.createTextRange();
therange.execCommand("Copy");
}
function replac()
{
if (helpmode)
{
alert("替換關(guān)鍵字");
}
else
{
txt2=prompt("請輸入搜尋目標(biāo)關(guān)鍵字","");
if (txt2 != null)
{
if (txt2 != "")
{
txt=prompt("關(guān)鍵字替換為:",txt2);
}
else
{
replac();
}
var Rtext = txt2; var Itext = txt; document.FORM.msg.value = eval('FORM.msg.value.replace("'+Rtext+'","'+Itext+'")');
}
}
}
function checklength(theform)
{
alert("你的信息已經(jīng)有 "+theform.msg.value.length+" 字節(jié).");
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -