x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<script type="text/javascript">
6
function getValue() {
7
var a, b, c;
8
a = void(b = 5, c = 7);
9
document.write('a = ' + a + ' b = ' + b + ' c = ' + c);
10
}
11
</script>
12
</head>
13
<body>
14
15
<p>点击以下按钮查看结果:</p>
16
<form>
17
<input type="button" value="点我" onclick="getValue();" />
18
</form>
19
20
</body>
21
</html>