?? menu.js
字號:
function linking(LName,LLink) {
//燭his gets the full URL
//var TLoc = parent.content.document.URL
var TLoc = parent.content.window.location.href;
//燭his strips out everything before the last slash
LastSlash=TLoc.lastIndexOf ('/', TLoc.length-1);
//燭his gets the actual file name
OutString=TLoc.substring (LastSlash+1, TLoc.length);
if (OutString == LLink) {
document.write ("<tr><td width=\"22\" valign=\"top\"><img src=\"images/bullet_2.gif\" width=\"22\" height=\"7\" vspace=\"3\" border=\"0\" align=\"absmiddle\"></td><td><span class=\"highlited\">"+ LName +"</span></td></tr>");
}
else {
document.write ("<tr><td width=\"22\" valign=\"top\"><img src=\"images/1x1.gif\" width=\"22\" height=\"7\" border=\"0\" align=\"absmiddle\"></td><td><a href=\""+ LLink +"\" target=\"content\" class=\"otherlinks\" onmouseover='window.status=\""+ LName +"\"; return true'>"+ LName +"</a></td></tr>");
}
}
function delimiter(){
// 5px delimiter for rows above
var adddelimiter = "<tr>";
adddelimiter += "<td height=\"5\" colspan=\"2\"><img src=\"images/1x1.gif\" width=\"1\" height=\"5\" border=\"0\" name=\"delimiter\"></td>";
adddelimiter += "</tr>";
document.write (adddelimiter);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -