खोज…


बुनियादी रूप

किसी विशेष वर्ग का उपयोग किए बिना प्रपत्र नियंत्रण में कुछ डिफ़ॉल्ट स्टाइल है।

हालाँकि, लेबल और नियंत्रणों को अधिकतम रिक्ति के लिए .form-group टैग में लपेटा जा सकता है।

<form>
  <div class="form-group">
    <label for="input-email">Email address</label>
    <input type="email" class="form-control" id="input-email" placeholder="Email">
  </div>
  <div class="form-group">
    <label for="input-password">Password</label>
    <input type="password" class="form-control" id="input-password" placeholder="Password">
  </div>
  <button type="submit" class="btn btn-default">Submit</button>
</form>

केवल-पढ़ने और अक्षम इनपुट

उपयोगकर्ता इनपुट को रोकने के readonly विशेषता जोड़ें। आसानी से संपादित नहीं किया जा सकता है

<input class="form-control" type="text" placeholder="Readonly input here…" readonly>

जोड़े disabled विशेषता एक इनपुट फ़ील्ड निष्क्रिय करने के लिए। एक खंडित फ़ील्ड को भी संपादित नहीं किया जा सकता है। कर्सर इसे और अधिक ध्यान देने योग्य बनाता है।

<input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow