Skip to content
GitHub

HTML 5 Features

HTML5 မှာပါဝင်လာတဲ့ Input Type အသစ်များ

Section titled “HTML5 မှာပါဝင်လာတဲ့ Input Type အသစ်များ”

HTML5 မှာ form တွေအတွက် input type အသစ်တွေ အများကြီး ပါဝင်လာပါတယ်။ ဒါကြောင့် user တွေအတွက် အဆင်ပြေတဲ့ form တွေကို code အများကြီးမလိုဘဲ အလွယ်တကူ ဖန်တီးနိုင်လာပါတယ်။

Email လိပ်စာ ထည့်ခိုင်းဖို့ သုံးပါတယ်။ Browser က ထည့်လိုက်တဲ့ စာသားက email format အမှန် (ဥပမာ - user@example.com) ဟုတ်မဟုတ် အလိုအလျောက် စစ်ပေးပါတယ်။

ဥပမာ -

<label for="email">Email:</label>
<input type="email" id="email" name="email">

URL တွေ ထည့်ဖို့အတွက် သုံးပါတယ်။ ထည့်လိုက်တဲ့ စာသားက web address အမှန် (ဥပမာ - https://www.example.com) ဟုတ်မဟုတ် စစ်ပေးပါတယ်။

ဥပမာ -

<label for="website">Website:</label>
<input type="url" id="website" name="website">

User တွေကို ပြက္ခဒိန် (calendar) ကနေ ရက်စွဲတစ်ခု ရွေးခိုင်းနိုင်ပါတယ်။

ဥပမာ -

<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob">
date picker

User တွေကို range အတွင်းက တန်ဖိုးတစ်ခုကို slider ပုံစံနဲ့ ရွေးခိုင်းနိုင်ပါတယ်။

ဥပမာ -

<label for="volume">Volume:</label>
<input type="range" id="volume" name="volume" min="0" max="100">
range slider

အရောင်တစ်ခုကို ရွေးချယ်ဖို့အတွက် color picker တစ်ခု ပေါ်လာစေပါတယ်။

ဥပမာ -

<label for="color">Pick a Color:</label>
<input type="color" id="color" name="color">
color picker