x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function displayResult() {
8
var x = document.getElementById("myCheck").form.id;
9
alert(x);
10
}
11
</script>
12
</head>
13
<body>
14
15
<form id="form1">
16
<input type="checkbox" id="myCheck">你喜欢夏天吗?
17
</form>
18
<button type="button" onclick="displayResult()">显示包含选择框的表单ID</button>
19
20
</body>
21
</html>