$("#ulWizardTeamMembersList").find('#chk' + ContactInfo[0]).attr("checked", "checked");
countChecked('ulWizardTeamMembersList', 'TeamMembers');
$("#ulWizardContactsList").find('#chk' + ContactInfo[0]).attr("checked", "checked");
countChecked('ulWizardContactsList', 'Contacts');
问问题
21 次
1 回答
0
尝试使用:
whatever.prop('checked', true);
“properties”和“attributes”之间有细微的差别,jQuery 的最新版本已经开始强制执行它。
见这里:http ://api.jquery.com/prop/
希望有帮助!
于 2013-02-23T10:51:41.847 回答