日期:2014-05-16  浏览次数:20352 次

javascript方法参数
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>9</title>
<script type="text/javascript">
	document.write("function");
	
	function doit(a,b,c){
		alert(a);
		alert(b);
		alert(c);

	}
	
</script>
</head>
<body>
	<script type="text/javascript">
		alert("Function 的参数传递");
		doit();                 	//不传参数
		doit(12);         			//只传一个参数                   
		doit(12,"abc",true);  		//都传过去
		doit(12,23,34,"aaaa");		//剩下的一个不传
	</script>

</body>
</html>

?