x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style type="text/css">
7
#b1 {
8
position: absolute;
9
}
10
</style>
11
<script>
12
function displayResult() {
13
document.getElementById("b1").style.bottom = "100px";
14
}
15
</script>
16
</head>
17
<body>
18
19
<input type="button" id="b1" onclick="displayResult()" value="设置底部的位置">
20
21
</body>
22
</html>