Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

การใช้ Bootstrap Input Groups


โดยการเพิ่มเนื้อหาที่เติมไว้ล่วงหน้าและต่อท้ายในช่องป้อนข้อมูล คุณสามารถเพิ่มองค์ประกอบทั่วไปในการป้อนข้อมูลของผู้ใช้ได้ ตัวอย่างเช่น คุณสามารถเพิ่มสัญลักษณ์ดอลลาร์, @ สำหรับชื่อผู้ใช้ Twitter หรืออะไรก็ได้ที่อาจพบได้ทั่วไปสำหรับอินเทอร์เฟซแอปพลิเคชันของคุณ

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อสร้าง Bootstrap Input Group

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Input Group</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div style = "padding: 100px 100px 10px;">
         <form class = "bs-example bs-example-form" role = "form">
            <div class = "input-group">
               <span class = "input-group-addon">@</span>
               <input type = "text" class = "form-control" placeholder = "twitterhandle">
            </div>
            <br>
            <div class = "input-group">
               <input type = "text" class = "form-control">
               <span class = "input-group-addon">.00</span>
            </div>
            <br>
            <div class = "input-group">
                span class = "input-group-addon">$</span>
               <input type = "text" class =" form-control">
               <span class = "input-group-addon">.00</span>
            </div>
         </form>
      </div>
   </body>
</html>