📄 guestbook.js
字号:
function changeimage()
{
document.myform.GuestImages.value=document.myform.Image.value;
document.myform.showimages.src='/GuestBook/Images/Face/'+document.myform.Image.value+'.gif';
}
function guestpreview()
{
document.preview.content.value=document.myform.GuestContent.value;
var popupWin = window.open('GuestPreview.asp', 'GuestPreview', 'scrollbars=yes,width=620,height=230');
document.preview.submit();
}
function CheckForm()
{
if(document.myform.GuestName.value==''){
alert('姓名不能为空!');
document.myform.GuestName.focus();
return(false) ;
}
if(document.myform.GuestTitle.value==''){
alert('主题不能为空!');
document.myform.GuestTitle.focus();
return(false);
}
if(document.myform.GuestTitle.value.length>30){
alert('主题不能超过30字符!');
document.myform.GuestTitle.focus();
return(false);
}
var IframeContent=document.getElementById("editor").contentWindow;
IframeContent.HtmlEdit.focus();
IframeContent.HtmlEdit.document.execCommand('selectAll');
IframeContent.HtmlEdit.document.execCommand('copy');
var CurrentMode=editor.CurrentMode;
if (CurrentMode==0){
document.myform.GuestContent.value=editor.HtmlEdit.document.body.innerHTML;
}
else if(CurrentMode==1){
document.myform.GuestContent.value=editor.HtmlEdit.document.body.innerText;
}
if(document.myform.GuestContent.value==''){
alert('内容不能为空!');
editor.HtmlEdit.focus();
return(false);
}
if(document.myform.GuestContent.value.length>65536){
alert('内容不能超过64K!');
editor.HtmlEdit.focus();
return(false);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -