代码编辑器:
x
1
<style>
2
#b1{
3
position:absolute;
4
}
5
</style>
6
<script>
7
function displayResult(){
8
document.getElementById("b1").style.right="100px";
9
}
10
</script>
11
<input type="button" id="b1" onclick="displayResult()" value="设置右部位置为100 px">
12
13
14