一个页面内放入文本框和按钮,实现文本框和按钮输绑定,输入圆半径,计算圆面积并弹窗计算结果显示出来。(js)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title>面积</title>
	</head>
	<body>
		<input type="text" id="text"><br>
		<input type="button" value="计算" id="count">
		<script>
			document.getElementById('count').onclick=function(){
     
				var r = document.getElementById("text").value;
				alert(r*r*3.14);
			}
		</script>
	</body>
</html>

你可能感兴趣的:(计算,getElementById,js)