?? tag.js
字號:
function doPreview(){
document.myform.action.value = 'preview';
document.myform.target = '_blank';
return true;
}
function doSave(){
document.myform.action.value = 'save';
document.myform.target='_self';
return true;
}
function doCheck(){
if (!myform.tagid.value && (myform.tag.value=="" || myform.tag.value=="my_")) {
alert("請輸入標簽配置名稱!");
myform.tag.focus();
return false;
}
if (myform.tagname.value=="") {
alert("請輸入標簽配置說明!");
myform.tagname.focus();
return false;
}
return true;
}
function CopyInp(theField) {
var tempval=eval('document.'+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand('Copy')
alert("復制成功,請粘貼到相應的模板中即可實現標簽調用!");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -