0
$("#ulWizardTeamMembersList").find('#chk' + ContactInfo[0]).attr("checked", "checked");
countChecked('ulWizardTeamMembersList', 'TeamMembers');

$("#ulWizardContactsList").find('#chk' + ContactInfo[0]).attr("checked", "checked");
countChecked('ulWizardContactsList', 'Contacts');
4

1 回答 1

0

尝试使用:

whatever.prop('checked', true);

“properties”和“attributes”之间有细微的差别,jQuery 的最新版本已经开始强制执行它。

见这里:http ://api.jquery.com/prop/

在这里:.prop() 与 .attr()

希望有帮助!

于 2013-02-23T10:51:41.847 回答