Add Radio Buttons

Group ထဲမွာ တစ္ခုကိုပဲ ေရြးခ်ယ္ေစခ်င္ရင္ေတာ့ radio button ကို အသံုးျပဳႏိုင္ပါတယ္။ ဥပမာ။ Yes , No အေျဖလိုမ်ဳိးေပါ့။

<!DOCTYPE html>
<html>
<head>
    <title>Simple Form</title>
</head>
<body>
    <form method="post" action="./post.php">
        Returning customer :

    <input type="radio" name="returning" value="yes">Yes
    <input type="radio" name="returning" value="no">No


    </form>
</html>

radio အတြက္ group ျဖစ္ေအာင္ name ကို အတူတူျဖစ္ေအာင္ ေပးထားဖုိ႕လိုပါတယ္။ select လုပ္လိုက္တဲ့ value ကို backend server ဆီကို ပို႕ေပးပါလိမ့္မယ္။

Figure 8-10

Figure 8-10

တကယ္လို႕ page တက္လာကတည္းက radio button တစ္ခုကို check လုပ္ထားေစခ်င္ရင္ေတာ့ checked attribute ေလး ထည့္ေပးဖို႕လိုပါတယ္။

<input type="radio" name="returning" value="yes" checked>

results matching ""

    No results matching ""