每一个添加进去的input radio项都带有 checked="true"我想要他们每次都选择最新的那个,所以把他们id写成一样,在火狐和chrome下,可以实现,但是在ie下,所有生成的input radio项都被选上了,没办法,最后是在每次动态添加前,使用 $("input").removeAttr("checked");
$('input').removeAttr('checked');
$("你input的名字").removeAttr("checked");