onclick这个收音机我试图生成一个有两个选项的单选按钮..如何在JQUery中这样做?
答案 0 :(得分:3)
我不确定你是否真的意味着“收音机”,但如果你这样做,也许你想要一些简单的东西:
$("#radio").click(function(){
$("#myRadioContainerSelector").html("<input type='radio' id='yes' name='myRadio' value='yes' /><label for='yes'>Yes</label><input type='radio' id='no' name='myRadio' value='no' /><label for='no'>No</label>");
});