web简单计算器的子函数 求帮助!!!
<html><head>
<title>col</title>
<script>
Function click()
{
}
</script>
</head>
<body>
<form name="myForm">
<h2>计算器</h2>
<p>请输入第一个操作数:
<input type="text"name="num1"/></p>
<p>请输入第二个操作数:
<input type="text"name="num2"></p>
<p>请选择操作<br>
<input type="radio"name="col"value="add">+
<input type="radio"name="col"value="reduce">-
<input type="radio"name="col"value="ride">*
<input type="radio"name="col"value="besides">/
</p>
<p> <input type="button"value="="onclick="click()"></p>
<p>结果是:
<input type="text"name="result"></p>
</body>
</html>
怎样实现文本框内容的获取以及单选按钮的获取和判断,并将计算结果再输出结果文本框中显示??就是function click()子函数该怎么写呀?本人初学web,求大神帮助!!!