第一天学习,第一个问题
<!DOCTYPE html><html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript" >
function Myclik(){
alert(Math.PI);
}
</script>
<input type="button" value="点击" onclick="Myclik">
</body>
</html>
为什么点击没反应,很苦恼