menu.htm

来自「用VC开发ACTIVEX书籍和随书源码- Develops the ACTIVE」· HTM 代码 · 共 55 行

HTM
55
字号
<html>
<head>
  <title>Menu</title>

<script language="JavaScript">
<!--

toc = new Image(120,22);
toc.src ="toc.gif";
tocx = new Image(120,22);
tocx.src ="tocx.gif";

digbk = new Image(120,22);
digbk.src ="digbk.gif";
digbkx = new Image(120,22);
digbkx.src ="digbkx.gif";

function Image()
{
}

function imgReplace(img,imgx)
{
  browserName = navigator.appName;
  browserVer = parseInt(navigator.appVersion);

  if (browserName == "Netscape" && browserVer >=3)
  {
    document.images[img].src = eval(imgx + ".src");
  }
}

// -->
</script>
</head>

<body background="menu_bg.gif">
<img width=125 height=155 border=1 hspace=5 vspace=3 src="axpvcs.gif" alt="[ActiveX Programming with Visual C++ 5.0]">

<br>

<A HREF="indextoc.htm" target="text"
onMouseOver="imgReplace('contents','tocx'),
window.status='Table of Contents'; return true"
onMouseOut="imgReplace('contents','toc')"><img name="contents" width=120 height=22 hspace=7 vspace=2 border=0 src="toc.gif" alt="[Table of Contents]"></A><br>

<A HREF="http://www.mcp.com/que/bookshelf" target="_top"
onMouseOver="imgReplace('bookshelf','digbkx'),
window.status='Click here to go to the Digital Bookshelf'; return true"
onMouseOut="imgReplace('bookshelf','digbk')"><img name="bookshelf" width=120 height=22 hspace=7 vspace=2 border=0 src="digbk.gif" alt="[Digital Bookshelf]"></A><br>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?