使用 bootstrap-switch 开关禁用输入框
disable a input box with bootstrap-switch toggle
当我使用 bootstrap 切换按钮切换时,我正在尝试 disable/enable table 中的输入框。
<table class="table .table-striped">
<thead>
<tr>
<th>Number</th>
<th>Inputbox</th>
<th>checkbox</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
<tr>
<td> 2 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
<tr>
<td> 3 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
</tbody>
</table>
-- jQuery 方法一:这个根本不行。
$('#constraint_checkbox').on('switchChange', function(event, state) {
$(this).prop('enable', true);
})
-- 方法 2:这只会禁用第一个
$(selector).on('switchChange.bootstrapSwitch', function(event, state) {
if ($(selector).is(':checked') == false){
$('#some_value').val('').prop('disabled', true);
}
else {
$('#some_value').val('').prop('disabled', false);
}
});
您可以使用它来切换 some_value
输入的 disabled
属性:
$('#constraint_checkbox').on('change', function(event, state) {
var status = $('#some_value').prop('disabled');
$('#some_value').prop('disabled', !status);
});
当我使用 bootstrap 切换按钮切换时,我正在尝试 disable/enable table 中的输入框。
<table class="table .table-striped">
<thead>
<tr>
<th>Number</th>
<th>Inputbox</th>
<th>checkbox</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
<tr>
<td> 2 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
<tr>
<td> 3 </td>
<td><input id="some_value" type="number" class="form-control input-md" value=""></td>
<td><input data-size="small" type="checkbox" id="constraint_checkbox" ></td>
</tr>
</tbody>
</table>
-- jQuery 方法一:这个根本不行。
$('#constraint_checkbox').on('switchChange', function(event, state) {
$(this).prop('enable', true);
})
-- 方法 2:这只会禁用第一个
$(selector).on('switchChange.bootstrapSwitch', function(event, state) {
if ($(selector).is(':checked') == false){
$('#some_value').val('').prop('disabled', true);
}
else {
$('#some_value').val('').prop('disabled', false);
}
});
您可以使用它来切换 some_value
输入的 disabled
属性:
$('#constraint_checkbox').on('change', function(event, state) {
var status = $('#some_value').prop('disabled');
$('#some_value').prop('disabled', !status);
});