Five. The Radio box, check box button buttons not only set normal buttons, but are also valid for radio boxes and check boxes. HTML Radio Box<inputtype= "Radio"name= "Sex"value= "Male"ID= "Male"><label for= "Male">Man</label></input><inputtype= "Radio"name= "Sex"value= "female"ID= "female"><label for= "female">Woman</label></input>//jquery Box $ (' #reg Input[type=radio] '). button ();//jquery box changed to $ (' #reg '). Buttonset ();//html part into one line//html check box <inputtype= "checkbox"name= "Color"value= "Red"ID= "Red"><label for= "Red">Red</label></input><inputtype= "checkbox"name= "Color"value= "Green"ID= "Green"><label for= "Green">Green</label></input><inputtype= "checkbox"name= "Color"value= "Yellow"ID= "Yellow"><label for= "Yellow">Yellow</label></input><inputtype= "checkbox"name= "Color"value= "Orange"ID= "Orange"><label for= "Orange">Orange</label></input>//jquery check box $ (' #reg Input[type=radio] '). button ();//jquery check box changed to $ (' #reg '). Buttonset ();
jquery UI Learning Essay button