javascript的函数调用

<html>
	<head>
		<title>document.write</title>
		
		<script>
		
			function show(){
				alert("hello");
			}
			
			//直接调用
			//show();
			
			//事件响应
			
			//function add(var x,var y) 不正确的写法
			function add(x,y){
				return (x + y);
			}
			
			alert(add(1,3));
			
			

			
		</script>

	</head>
	
	<body>
	<!--事件响应-->
		<input type ="button" value="click" onclick="show()"/>
	</body>

</html>

你可能感兴趣的:(JavaScript)