<html>
<head>
<style>
#myBtn {
position: absolute;
}
</style>
</head>
<body>
<button type="button" id="myBtn" onclick="myFunction()">将左侧位置设置为 100 像素</button>
<script>
function myFunction() {
document.getElementById("myBtn").style.left = "100px";
}
</script>
</body>
</html>