1,使用javascript 方法 添加一個隱藏域,而後分割遍歷 var strRoles = $("#userRoles").val(); if (strRoles.length>0) { var roleArr = strRoles.split(','); $.each(roleArr, function(index, roleName){ $("input[type=checkbox][name='roles[]']").each(function () { if($(this).val() == roleName) { $(this).attr("checked",true); } }); }); }
能夠參考一下:http://www.tuicool.com/articles/bMV7j2ujavascript