博文

J2(2005-09-18 13:24:00)

摘要:<html>
<head>
<title>无标题文档2</title>
</head>
<body background="bg.jpg">
<script language="javascript">
function fun()
{
alert(document.ThisForm.age.value);
}
function fun1()
{
if (document.ThisForm.study(0).checked==true)
alert("0");
else
alert("1");
}
</script>
<form name="ThisForm">
<input type="text" name="age">
<input type="button" name="input" value="输出" onClick="fun()"> <br>
<input type=radio name="study" value="0" >  time: 0<br>
<input type=radio name="study" value="1" >  time: 1<br>
<input type="button" value="Go" name="press" onclick="fun1()"> <br>
</form>
</body>
</html>......

阅读全文(3650) | 评论:0

我的第一个JavaScript程序.(2005-09-18 12:56:00)

摘要:<html>
<head>
<title>无标题文档</title>
</head> <body>
<script language="javascript">
var a;
a=1
function fun()
{
a=100;
document.write(a);
}
</script>
<form>
<input type="button" name="input" value="输出" onClick="fun()"> </form>
</body>
</html>
......

阅读全文(4807) | 评论:0