我正在尝试使用jquery更改切换开关的状态,但未成功。 这是jQuery的代码
mid = end
我尝试使用这种方式
$('#bandwidthcap').checked='false';
这是html的代码
$('#bandwidthcap').attr('checked','false')
答案 0 :(得分:0)
您可以使用.prop()函数:
$('#bandwidthcap').prop("checked", true)
<input type="checkbox" name="bandwidthcap" id="bandwidthcap" class="switchery" data-color="primary" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>