javascript中,函数可以传递一个实参 形参,
还可以在函数里面调用传递函数,成为回掉函数。
document.write()创建表格做成一个函数的练习。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<script type="text/javascript">
var liuzhe=function(row,col,width,color){
document.write('<table border="1" width="'+width+'" align="center">');
for(var i=0;i<row;i++){
if(i%2==0){
var bg=color;
}else{
var bg="";
}
document.write('<tr bgcolor="'+bg+'">')
for(j=0;j<col;j++)
document.write('<td>'+(i*row+col)+'</td>')
document.write('</tr>')
}
document.write('</table>');
}
liuzhe(40,30,1000,"red");
liuzhe(9,9,400,"blue");
function table(start,end,check){
for(var i=start;i<end;i++)
if(check(i)){
document.write(i+"<br>");
}
}
table(10,500,function(num){
if(num%3==0)
return true;
else return false;
})
</script>
</head>
<body>
</body>
</html>