tool_selection.html

来自「描述ARM7TDMI在点灯程序」· HTML 代码 · 共 63 行

HTML
63
字号
<html>
<head>
<title>Tools Selection</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript">
<!-- 
function goToURL(userchoice)
{
//Author: S.CADENE
//The user choice is passed via userchoice with:
// userchoice = 1, the ARM tool have been selected,
// userchoice = 2, the Green Hills tool have been selected.
switch (userchoice)
	{
		case 1 :
			parent.right.location ="page/arm/index.html";
			break;
		case 2 :
			parent.right.location="page/green_hills/index.html";
			break;
		default :
			parent.right.location="/page/error_page.html";
			break;
	}
}
//-->
</script>
</head>

<body bgcolor="#FFFFFF">
<div id="forADS" style="position:absolute; left:58px; top:560px; width:145px; height:81px; z-index:2; visibility: hidden"><img src="../../../symbol/withangel_P.gif" width="139" height="38" border="0" name="Image7"></div>
<hr>
<h2 align="center"><b><font face="Arial, Helvetica, sans-serif">GETTING STARTED 
  FOR THE AT91EB40A</font></b></h2>
<hr>
<p>&nbsp; </p>
<form method="post" action="">
  <table width="75%" border="1">
    <tr> 
      <td width="32%"><font face="Arial, Helvetica, sans-serif" size="3">ARM&reg; 
        Software Tool:</font></td>
      <td width="68%"> 
        <div align="left"><font face="Arial, Helvetica, sans-serif" size="3">
          <input type="button" value="   Let's go with ARM&reg;   " onClick="goToURL(1)" name="buttonArm">
          </font></div>
      </td>
    </tr>
  </table>
  <br>
  <table width="75%" border="1">
    <tr> 
      <td width="32%"><font face="Arial, Helvetica, sans-serif" size="3">Green 
        Hills Software Tool:</font></td>
      <td width="68%"><font face="Arial, Helvetica, sans-serif" size="3"> 
        <input type="button" value="Let's go with Green Hills" onClick="goToURL(2)" name="buttonGreenHills">
        </font></td>
    </tr>
  </table>
  </form>
<h3>&nbsp;</h3>
  </body>
</html>

⌨️ 快捷键说明

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