我遇到问题,我想启用/显示选项,如果该选项与“ColumnCode”具有相同名称且“IsRow”为真。除此之外,该选项被禁用/隐藏。
我尝试了下面的代码,但它没有用。
var model = {
Rows: $('#Rows')
};
var columns =
[{"ColumnCode":"CollateralType","IsRow":true},
{"ColumnCode":"CollectorUnit","IsRow":true}];
_.each(columns, function (col) {
model.Rows.find('option').each(function () {
if (this.value != col['ColumnCode'] || (this.value == col['ColumnCode'] && !col['IsRow']))
$(this).attr('disabled', true);
});
});
这是选择元素:
<select name="Rows[]" id="Rows">
<option value="AccountNo">Account No</option>
<option value="CollateralType">Collateral Type</option>
</select>
有人可以指导吗?
答案 0 :(得分:1)
您应该将该循环内部转出并首先遍历选项然后遍历数组,否则您的选项将不断重新设置,或者可能始终禁用所有禁用。
您还可能希望添加类似于<option value="none">...please select</option>
值的默认选项,以确保在禁用所有内容时都不会选择任何内容。
var model = {
Rows: $('#Values') // had to change this from #Row for demo to work
};
var columns = [
{"ColumnCode": "CollateralType", "IsRow": true}, // change this to see different results
{"ColumnCode": "CollectorUnit", "IsRow": true}
];
// enable option if option has the same name as "ColumnCode" and "IsRow" is true
model.Rows.find('option').each(function (index, option) {
var matchFound = false;
var isRow = false;
_.each(columns, function (col) {
if (option.value == col['ColumnCode']) {
matchFound = true;
isRow = col['IsRow']
return false;
}
});
if(matchFound && !isRow || !matchFound){
$(this).attr('disabled', true); //jQuery pre 1.6
//$(this).prop('disabled', true); // jQuery v1.6 or later
}
});
如果动态发生这种情况并需要重置所有已禁用的属性,只需执行model.Rows.find('option').removeAttr('disabled')
或者如果您使用的是jQuery 1.6或更高版本,请在启动循环之前使用model.Rows.find('option').prop('disabled', false)
。
DEMO - 仅启用列表中的选项并将isRow设置为true