我很遗憾地问这个问题,我讨厌在这里问,我不想被视为吸血鬼,但我对此很不满意,我不认为我是在正确的界限所有,如果这对所有评论都没有意义,我会尝试解释。我很绝望!
基本上我正在做的事情要求你选择一家公司,当你这样做时它会生成一些复选框。从下拉列表中选择配置文件时,需要勾选相应的复选框。它应勾选的复选框是该配置文件中的所有内容的PRIVILEGE_PROFILES.PRIVILEGE CODES(这些是复选框)。
我的代码是http://jsfiddle.net/shaunyweasel/dj8jr19e/5/。阵列位于小提琴的顶部。我试图这样做,以便如果标签的文本值等于SEC_PRIVILEGES.Name然后勾选那些复选框,但这不是真的有效,所以我不确定是否有更好的方法来解决它。下面的方法是我一直在尝试让它勾选复选框,但我很确定它是错误的。
$(document).on('change', '#select_profile', function () {
var select = $("#select_profile option:selected").text(),
selectedProfile, privileges, div, label, access;
var checked = document.getElementsByTagName('input');
for (var i = 0; i < checked.length; i++) {
if (checked[i].type == 'checkbox') {
checked[i].checked = false;
}
}
if (select !== 'None') {
for (var i = 0; i < PRIVILEGE_PROFILES.length; i++) {
if (PRIVILEGE_PROFILES[i].PROFILE_ID === select) {
selectedProfile = PRIVILEGE_PROFILES[i];
privileges = selectedProfile.PRIVILEGE_CODE;
}
}
for (var i = 0; i < SEC_Privileges.length; i++) {
if (privileges[i] === SEC_Privileges[i].Unique_Code) {
console.log(privileges);
var labels = document.getElementsByTagName('label');
var checked = document.getElementsByTagName('input');
for (var c = 0; c < checked.length; c++) {
if (SEC_Privileges[i].Name == labels) {
checked[c].checked = true;
}
}
}
}
}
});
如果这没有意义,这里有一步一步说明它的运作方式以及我所处的位置:
用户从company_selection下拉列表
选择公司后,它会根据公司的COMPANY_PRIVILEGES.UNIQUE_CODE(数组)生成该公司的复选框
然后,用户必须从profile_selection中选择一些内容,并根据他们选择的配置文件,它将检查相应的复选框,具体取决于它具有的PRIVILEGE_PROFILES.PRIVILEGE_CODES。 (所以如果你选择了Crew,那么它只会勾选View Tyrell框,因为它是它唯一的配置文件)
答案 0 :(得分:2)
以下是工作示例:DEMO
我改变了以下事项:
1)当您创建复选框时,我已将类名添加到类似于UNIQUE_CODE
的复选框
$(document).on('change', '#select_company', function () {
// declare variables before the function
var select = $("#select_company option:selected").text(),
selectedProfile, privileges, div, label, access;
// remove access checkboxes from previously selected profile
$('.apps input[type=checkbox]').remove();
$('.apps label').remove();
// if the selected option is 'None', do nothing, else...
if (select !== 'None') {
// match the selected profile in the dropdown with the JS PROFILES object
for (var i = 0; i < COMPANY_PRIVILEGES.length; i++) {
if (COMPANY_PRIVILEGES[i].COMPANY_CODE === select) {
selectedProfile = COMPANY_PRIVILEGES[i];
privileges = selectedProfile.UNIQUE_CODE;
}
}
// match the associated privileges from the profile within the entire privilege list
for (var j = 0; j < privileges.length; j++) {
for (var i = 0; i < SEC_Privileges.length; i++) {
if (privileges[j] === SEC_Privileges[i].Unique_Code) {
// get the div with the id === SEC_Privileges[i].Group_code
div = document.getElementById(SEC_Privileges[i].Group_Code);
access = document.createElement('input');
access.type = 'checkbox';
access.className = SEC_Privileges[i].Unique_Code;
label = document.createElement('label');
// create a textnode with the unique code from the privileges
label.appendChild(document.createTextNode(SEC_Privileges[i].Name));
div.appendChild(label);
div.appendChild(access);
}
}
}
}
});
2)编写简单函数以根据类名检查复选框:
$(document).on('change', '#select_profile', function () {
var selectedValue = $("#select_profile option:selected").text(),
selectedProfile, privileges, div, label, access;
console.log(selectedValue);
for (var i = 0; i < PRIVILEGE_PROFILES.length; i++) {
if (PRIVILEGE_PROFILES[i].PROFILE_ID === selectedValue) {
privileges = PRIVILEGE_PROFILES[i].PRIVILEGE_CODE;
}
}
for(var j = 0; j < privileges.length; j++) {
$('.'+privileges[j]).attr("checked", "true");
}
});
答案 1 :(得分:2)
您的代码中是否有使用jQuery选择器的原因?
无论如何,我已经做了更新来解决你的问题(不使用jQuery)http://jsfiddle.net/dj8jr19e/7/
主要问题是您没有为复选框设置任何ID。
我已设置与您的ID
权限相对应的Unique_Code
。
access.id = SEC_Privileges[i].Unique_Code;
然后,当您遍历所选配置文件中的关联权限时,我只使用了getElementById
,因为privileges
包含Unique_Code用作复选框的ID。