2010-12-09 2 views

답변

1

해결책을 찾았습니다. 그룹의 모든 라디오 버튼에 동일한 값 (name="planetType", 아래 참조)이있는 name 속성을 추가하면 IE도 행복해집니다.

<label><input type="radio" value="all" data-bind="checked: typeToShow" name="planetType" />All</label>  
<label><input type="radio" value="rock" data-bind="checked: typeToShow" name="planetType"/>Rocky planets</label>  
<label><input type="radio" value="gasgiant" data-bind="checked: typeToShow" name="planetType"/>Gas giants</label> 
관련 문제