单选框 - radio

# 选择框控件: radio # 选择框布局: radiogroup ## 复选框单选框控件(APP自带例子) ```js "ui"; ui.layout( <vertical padding="16"> <checkbox id="cb1" text="复选框"/> <checkbox id="cb2" checked="true" text="勾选的复选框"/> <radiogroup> <radio text="单选框1"/> <radio text="单选框2"/> <radio text="单选框3"/> </radiogroup> <radiogroup mariginTop="16"> <radio text="单选框1"/> <radio text="单选框2"/> <radio text="勾选的单选框3" checked="true"/> </radiogroup> </vertical> ); ui.cb1.on("check", (checked)=>{ if(checked){ toast("第一个框被勾选了"); }else{ toast("第一个框被取消勾选了"); } }); ```