第二次作业
<head>
<meta charset="utf-8">
<title>
交换两个变量
</title>
</head>
<body>
<script>
var one=1;
var two=2;<html>
<head>
<meta charset="utf-8">
<title>
交换两个变量
</title>
</head>
<body>
<script>
var one=1;
var two=2;
var temp=one;
one=two;
two=temp;
document.write(one);
document.write(two);
</script>
</body>

浙公网安备 33010602011771号