人机交互第十周
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了人机交互第十周相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script type="text/javascript">
num=0
function a(){
for(i=0;i<=100;i++)
{
if(i%2==0)
num+=i;
}
alert(num);
}
</script>
</head>
<body>
<input type="button" value="click me"
onclick="a()"/>
</body>
</html>
<input type="button" value="click me"
onclick="a()"/>
</body>
</html>
以上是关于人机交互第十周的主要内容,如果未能解决你的问题,请参考以下文章