📄 wind_editor.js
字号:
var defaultmode = "divmode";
var text = "";
if (defaultmode == "nomode") {
helpmode = false;
divmode = false;
nomode = true;
} else if (defaultmode == "helpmode") {
helpmode = true;
divmode = false;
nomode = false;
} else {
helpmode = false;
divmode = true;
nomode = false;
}
function checkmode(swtch){
if (swtch == 1){
nomode = false;
divmode = false;
helpmode = true;
alert('{#js_help}');
} else if (swtch == 0) {
helpmode = false;
divmode = false;
nomode = true;
alert('{#js_direct}');
} else if (swtch == 2) {
helpmode = false;
nomode = false;
divmode = true;
alert('{#js_remind}');
}
}
function getActiveText(selectedtext) {
text = (document.all) ? document.selection.createRange().text : document.getSelection();
if (selectedtext.createTextRange) {
selectedtext.caretPos = document.selection.createRange().duplicate();
}
return true;
}
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 checklength(theform)
{
alert('{#js_bits}'+theform.atc_content.value.length);
}
function AddText(NewCode)
{
if (document.FORM.atc_content.createTextRange && document.FORM.atc_content.caretPos)
{
var caretPos = document.FORM.atc_content.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? NewCode + ' ' : NewCode;
}
else
{
document.FORM.atc_content.value+=NewCode
}
setfocus();
}
function setfocus()
{
document.FORM.atc_content.focus();
}
function showsize(size) {
if (helpmode) {
alert('{#js_size_help}'+"[size="+size+"] "+size+'{#js_word}'+"[/size]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[size="+size+"]"+text+"[/size]";
AddText(AddTxt);
} else {
txt=prompt('{#js_size+size}','{#js_word}');
if (txt!=null) {
AddTxt="[size="+size+"]"+txt;
AddText(AddTxt);
AddTxt="[/size]";
AddText(AddTxt);
}
}
}
function showfont(font) {
if (helpmode){
alert('{#js_font_help}'+" [font="+font+"]"+font+"[/font]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[font="+font+"]"+text+"[/font]";
AddText(AddTxt);
} else {
txt=prompt('{#js_font}'+font,'{#js_word}');
if (txt!=null) {
AddTxt="[font="+font+"]"+txt;
AddText(AddTxt);
AddTxt="[/font]";
AddText(AddTxt);
}
}
}
function showcolor(color) {
if (helpmode) {
alert('{#js_color_help}'+"[color="+color+"]"+color+"[/color]");
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[color="+color+"]"+text+"[/color]";
AddText(AddTxt);
} else {
txt=prompt('{#js_color}'+color,'{#js_word}');
if(txt!=null) {
AddTxt="[color="+color+"]"+txt;
AddText(AddTxt);
AddTxt="[/color]";
AddText(AddTxt);
}
}
}
function bold() {
if (helpmode) {
alert('{#js_bold_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[b]"+text+"[/b]";
AddText(AddTxt);
} else {
txt=prompt('{#js_bold}','{#js_word}');
if (txt!=null) {
AddTxt="[b]"+txt;
AddText(AddTxt);
AddTxt="[/b]";
AddText(AddTxt);
}
}
}
function italicize() {
if (helpmode) {
alert('{#js_italic_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[i]"+text+"[/i]";
AddText(AddTxt);
} else {
txt=prompt('{#js_italic}','{#js_word}');
if (txt!=null) {
AddTxt="[i]"+txt;
AddText(AddTxt);
AddTxt="[/i]";
AddText(AddTxt);
}
}
}
function quoteme() {
if (helpmode){
alert('{#js_quote_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[quote]"+text+"[/quote]";
AddText(AddTxt);
} else {
txt=prompt('{#js_quote}','{#js_word}');
if(txt!=null) {
AddTxt="[quote]"+txt;
AddText(AddTxt);
AddTxt="[/quote]";
AddText(AddTxt);
}
}
}
function setfly() {
if (helpmode){
alert('{#js_fly_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[fly]"+text+"[/fly]";
AddText(AddTxt);
} else {
txt=prompt('{#js_fly}','{#js_word}');
if (txt!=null) {
AddTxt="[fly]"+txt;
AddText(AddTxt);
AddTxt="[/fly]";
AddText(AddTxt);
}
}
}
function movesign() {
if (helpmode) {
alert('{#js_move_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[move]"+text+"[/move]";
AddText(AddTxt);
} else {
txt=prompt('{#js_move}','{#js_word}');
if (txt!=null) {
AddTxt="[move]"+txt;
AddText(AddTxt);
AddTxt="[/move]";
AddText(AddTxt);
}
}
}
function shadow() {
if (helpmode) {
alert('{#js_shadow_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[SHADOW=255,blue,1]"+text+"[/SHADOW]";
AddText(AddTxt);
} else {
txt2=prompt('{#js_glow_size}',"255,blue,1");
if (txt2!=null) {
txt=prompt('{#js_shadow}','{#js_word}');
if (txt!=null) {
if (txt2=="") {
AddTxt="[shadow=255, blue, 1]"+txt;
AddText(AddTxt);
AddTxt="[/shadow]";
AddText(AddTxt);
} else {
AddTxt="[shadow="+txt2+"]"+txt;
AddText(AddTxt);
AddTxt="[/shadow]";
AddText(AddTxt);
}
}
}
}
}
function glow() {
if (helpmode) {
alert('{#js_glow_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[glow=255,red,2]"+text+"[/glow]";
AddText(AddTxt);
} else {
txt2=prompt('{#js_glow_size}',"255,red,2");
if (txt2!=null) {
txt=prompt('{#js_glow}','{#js_word}');
if (txt!=null) {
if (txt2=="") {
AddTxt="[glow=255,red,2]"+txt;
AddText(AddTxt);
AddTxt="[/glow]";
AddText(AddTxt);
} else {
AddTxt="[glow="+txt2+"]"+txt;
AddText(AddTxt);
AddTxt="[/glow]";
AddText(AddTxt);
}
}
}
}
}
function center() {
if (helpmode) {
alert('{#js_align_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[align=center]"+text+"[/align]";
AddText(AddTxt);
} else {
txt2=prompt('{#js_align_type}',"center");
while ((txt2!="") && (txt2!="center") && (txt2!="left") && (txt2!="right") && (txt2!=null)) {
txt2=prompt('{#js_align_error}',"");
}
txt=prompt('{#js_align}','{#js_word}');
if (txt!=null) {
AddTxt="[align="+txt2+"]"+txt;
AddText(AddTxt);
AddTxt="[/align]";
AddText(AddTxt);
}
}
}
function rming() {
if (helpmode) {
alert('{#js_rm}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[rm]"+text+"[/rm]";
AddText(AddTxt);
} else {
txt=prompt('{#js_url}',"http://");
if(txt!=null) {
AddTxt="[rm]"+txt;
AddText(AddTxt);
AddTxt="[/rm]";
AddText(AddTxt);
}
}
}
function image() {
if (helpmode){
alert('{#js_img}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[img]"+text+"[/img]";
AddText(AddTxt);
} else {
txt=prompt('{#js_url}',"http://");
if(txt!=null) {
AddTxt="[img]"+txt;
AddText(AddTxt);
AddTxt="[/img]";
AddText(AddTxt);
}
}
}
function wmv() {
if (helpmode){
alert('{#js_wmv}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[wmv]"+text+"[/wmv]";
AddText(AddTxt);
} else {
txt=prompt('{#js_url}',"http://");
if(txt!=null) {
AddTxt="[wmv]"+txt;
AddText(AddTxt);
AddTxt="[/wmv]";
AddText(AddTxt);
}
}
}
function showurl() {
if (helpmode){
alert('{#js_url_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[url="+text+"]"+text+"[/url]";
AddText(AddTxt);
} else {
txt2=prompt('{#js_url_name}',"");
if (txt2!=null) {
txt=prompt('{#js_url}',"http://");
if (txt2!=null) {
if (txt2=="") {
AddTxt="[url]"+txt;
AddText(AddTxt);
AddTxt="[/url]";
AddText(AddTxt);
} else {
if(txt==""){
AddTxt="[url]"+txt2;
AddText(AddTxt);
AddTxt="[/url]";
AddText(AddTxt);
} else{
AddTxt="[url="+txt+"]"+txt2;
AddText(AddTxt);
AddTxt="[/url]";
AddText(AddTxt);
}
}
}
}
}
}
function showcode() {
if (helpmode) {
alert('{#js_code_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[code]"+text+"[/code]";
AddText(AddTxt);
} else {
txt=prompt('{#js_code}',"");
if (txt!=null) {
AddTxt="[code]"+txt;
AddText(AddTxt);
AddTxt="[/code]";
AddText(AddTxt);
}
}
}
function list() {
if (helpmode) {
alert('{#js_list_help}');
} else if (nomode) {
AddTxt="[list][*][*][*][/list]";
AddText(AddTxt);
} else {
txt=prompt('{#js_list_type}',"");
while ((txt!="") && (txt!="A") && (txt!="a") && (txt!="1") && (txt!=null)) {
txt=prompt('{#js_list_error}',"");
}
if (txt!=null) {
if (txt==""){
AddTxt="[list]";
} else if (txt=="1") {
AddTxt="[list=1]";
} else if(txt=="a") {
AddTxt="[list=a]";
}
ltxt="1";
while ((ltxt!="") && (ltxt!=null)) {
ltxt=prompt('{#js_list}',"");
if (ltxt!="") {
AddTxt+="[*]"+ltxt+"";
}
}
AddTxt+="[/list]";
AddText(AddTxt);
}
}
}
function underline() {
if (helpmode) {
alert('{#js_underline_help}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[u]"+text+"[/u]";
AddText(AddTxt);
} else {
txt=prompt('{#js_underline}','{#js_word}');
if (txt!=null) {
AddTxt="[u]"+txt;
AddText(AddTxt);
AddTxt="[/u]";
AddText(AddTxt);
}
}
}
function setswf() {
if (helpmode){
alert('{#js_flash}');
} else if (nomode || document.selection && document.selection.type == "Text") {
AddTxt="[flash=400,300]"+text+"[/flash]";
AddText(AddTxt);
} else {
txt2=prompt('{#js_height}',"400,300");
if (txt2!=null) {
txt=prompt('{#js_url}',"http://");
if (txt!=null) {
if (txt2=="") {
AddTxt="[flash=400,300]"+txt;
AddText(AddTxt);
AddTxt="[/flash]";
AddText(AddTxt);
} else {
AddTxt="[flash="+txt2+"]"+txt;
AddText(AddTxt);
AddTxt="[/flash]";
AddText(AddTxt);
}
}
}
}
}
function add_title(addTitle)
{
var revisedTitle;
var currentTitle = document.FORM.atc_title.value;
revisedTitle =addTitle+ currentTitle;
document.FORM.atc_title.value=revisedTitle;
document.FORM.atc_title.focus();
return;
}
function Addaction(addTitle)
{
var revisedTitle;
var currentTitle = document.FORM.atc_content.value;
revisedTitle = currentTitle+addTitle;
document.FORM.atc_content.value=revisedTitle;
document.FORM.atc_content.focus();
return;
}
function copytext(theField)
{
var tempval=eval("document."+theField);
tempval.focus();
tempval.select();
therange=tempval.createTextRange();
therange.execCommand("Copy");
}
function replac()
{
if (helpmode)
{
alert('{#js_replace}');
}
else
{
txt2=prompt('{#js_search}',"");
if (txt2 != null)
{
if (txt2 != "")
{
txt=prompt('{#js_keyword}',txt2);
}
else
{
replac();
}
var Rtext = txt2; var Itext = txt;
Rtext = new RegExp(Rtext,"g");
document.FORM.atc_content.value =document.FORM.atc_content.value.replace(Rtext,Itext);
}
}
}
function addattach(aid){
AddTxt=' [attachment='+aid+'] ';
AddText(AddTxt);
}
function addsmile(NewCode) {
document.FORM.atc_content.value += ' '+NewCode+' ';
}
cnt = 0;
function checkCnt() {
document.FORM.Submit.disabled=true;
cnt++;
if (cnt!=1){
alert('Submission Processing. Please Wait');
return false;
}
document.FORM.submit();
}
function _submit(){
if(document.FORM.atc_title.value==''){
alert('{#js_empty}');
document.FORM.atc_title.focus();
return;
}
checkCnt();
}
function quickpost(event)
{
if((event.ctrlKey && event.keyCode == 13)||(event.altKey && event.keyCode == 83))
{
cnt++;
if(cnt==1){
this.document.FORM.submit();
}else{
alert('Submission Processing. Please Wait');
}
}
}
function saletable(url){
sm=showModalDialog(url,'',"dialogWidth:330pt;dialogHeight:260pt;help:0;status:0");
if (sm!="") {
AddText(sm);
}
setfocus();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -