如何使用JavaScript设置定位元素的左侧位置?

使用left属性设置定位元素(例如按钮)的左侧位置。

示例

您可以尝试运行以下代码以使用JavaScript设置定位元素的左侧位置-

<!DOCTYPE html>
<html>
   <head>
      <style>
         #myID {
            position: absolute;
         }
      </style>
   </head>
   <body>
      <h1>Heading 1</h1>
      <p>This is Demo Text.</p>
      <button type="button" id="myID" onclick="display()">Change Left Position</button>
      <script>
         function display() {
            document.getElementById("myID").style.left = "150px";
         }
      </script>
   </body>
</html>
猜你喜欢