function checkone(){
var j=document.getElementById("wb").value;
var hobby=document.getElementById('hobby'+j)
hobby.checked=true;
j是id为"wb"的标签的值,如果j为1,‘hobby’+1=hobby1,由于hobby.checked=true;所以hobby1就被选中。
希望对你有帮助