林將一個容器內幾個單選按鈕,動態地使用jQuery添加方法和添加的事件處理程序,所有的單選按鈕,但它不工作事件代表團jQuery的
問:
每當我點擊單選按鈕在容器內,我需要一組要被執行的命令的..
fiddle- http://jsfiddle.net/Z86kW/1/
Jquery的
$(document).ready(function(){
$('#container').append('<input type="radio" name="radio1"/>');
$('#container').append('<input type="radio" name="radio2"/>');
$('#container').append('<input type="radio" name="radio3"/>');
$("#container").on("click", "radio", function(event) {
alert($(this).text());
})
})
CSS
#container{
height:100px;
width:200px;
background-color:red;
}
HTML
<div id="container">
</div>
,如果你打算使用它就像一個沒有無線電集團(同名)複選框,你或許應該使用複選框。 – adeneo
下面是我怎麼做 - > http://jsfiddle.net/Z86kW/7/ – adeneo