Skip to content
GitHub

Dropdowns & Options

Dropdown menu တွေအတွက် <select> ကိုသုံးပြီး၊ ရွေးချယ်စရာတွေအတွက် <option> ကို သုံးပါတယ်။

<label for="country">Country:</label>
<select id="country" name="country">
<option value="hk">Hong Kong</option>
<option value="uk">United Kingdom</option>
<option value="us">United States</option>
</select>

စာကြောင်းအများကြီးထည့်ဖို့အတွက် (ဥပမာ message ဒါမှမဟုတ် comment) <textarea> ကို သုံးပါတယ်။

<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="5" cols="30"></textarea>
select, input and textarea

Form တွေမှာ data တွေကို submit လုပ်ဖို့ ဒါမှမဟုတ် reset လုပ်ဖို့ button တွေ လိုအပ်ပါတယ်-

  • submit: Form data တွေကို server ဆီ ပို့ပေးတယ်။

  • reset: Input field ထဲက data အားလုံးကို ရှင်းပေးတယ်။

  • button: JavaScript နဲ့ အလုပ်လုပ်ဖို့် ခလုတ်။

<input type="submit" value="Send">
<input type="reset" value="Clear">