HTML အကိုးအကား

အက္ခရာဖြင့် HTML HTML အမျိုးအစားအလိုက် HTML Browser ပံ့ပိုးမှု HTML အရည်အချင်းများ HTML ကမ္ဘာလုံးဆိုင်ရာ အရည်အချင်းများ HTML ပွဲများ HTML အရောင်များ HTML Canvas HTML အသံ/ဗီဒီယို HTML အက္ခရာအစုံများ HTML Doctypes HTML URL ကုဒ် HTML ဘာသာစကားကုဒ်များ HTML နိုင်ငံကုဒ်များ HTTP မက်ဆေ့ခ်ျများ HTTP နည်းလမ်းများ PX မှ EM Converter ကီးဘုတ်ဖြတ်လမ်းများ


HTML <label> form Attribute

❮ HTML <label> တဂ်

ဥပမာ

ဖောင်တစ်ခုပြင်ပတွင်ရှိသော <label> ဒြပ်စင်တစ်ခု (သို့သော် ဖောင်၏တစ်စိတ်တစ်ပိုင်းဖြစ်နေဆဲဖြစ်သည်)။

<form action="/action_page.php" id="form1">
  <input type="radio" id="html" name="fav_language" value="HTML"><br>
  <input type="radio" id="css" name="fav_language" value="CSS">
  <label for="css">CSS</label><br>
  <input type="radio" id="javascript" name="fav_language" value="JavaScript">
  <label for="javascript">JavaScript</label><br><br>
  <input type="submit" value="Submit">
</form>

<label form="form1" for="html">HTML</label>

အဓိပ္ပါယ်နှင့် အသုံးပြုမှု

ရည်ညွှန်းချက်သည် အညွှန်း formပိုင်ဆိုင်သည့်ပုံစံကို သတ်မှတ်ပေးသည်။

ဤ attribute ၏တန်ဖိုး သည် တူညီသောစာရွက်စာတမ်းရှိ element တစ်ခု၏  idattribute နှင့် တူညီရပါမည် ။ <form>


Browser ပံ့ပိုးမှု

Attribute
form Yes Yes Yes Yes Yes

အထားအသို

<label form="form_id">

ရည်ညွှန်းတန်ဖိုးများ

Value Description
form_id Specifies the form element the <label> element belongs to. The value of this attribute must be the id attribute of a <form> element in the same document.

❮ HTML <label> တဂ်