我工作的asp.net MVC 5,我已經在input
場添加checkbox
類型的bootstrap toggle switch
像波紋管Asp.net MVC檢查/取消選中基於值的複選框?
<input id="test_id" name="cmdName" type="checkbox" checked data-toggle="toggle">
我想要做的檢查/取消選中基於複選框在或關值
注:默認情況下,它總是在
我想要做這樣的事情在我的JavaScript
If(command == "On")
{
//then it will check the checkbox
}
else if (command =="Off")
{
//then it will uncheck the checkbox
}
我發現與此相關的很多類似的問題,我想實現它,但一切都是徒勞
的鏈接是波紋管
我也有嘗試添加$('input:checkbox[name=cmdName]').attr('checked', false);
包括setAttribute
,removeAttribute
,.prop
和許多人一樣,但未能完成任務,我不知道什麼是我使用jquery 3.1.0
問題
和波紋管是我引用
<head>
<title>@ViewBag.Title</title>
@*All the javascript and css files that are required by the
application can be referenced here so that there is no
need to refrence them in each and every view*@
<script type="text/javascript" src="~/Scripts/jquery-3.1.0.min.js"></script>
<script src="~/Scripts/bootstrap-toggle.js"></script>
<link href="~/Content/bootstrap-toggle.css" rel="stylesheet" />
<link href="~/Content/bootstrap.css" rel="stylesheet" />
<link href="~/Content/bootstrap.min.css" rel="stylesheet" />
<link href="~/Content/DataTables/css/jquery.dataTables.min.css" rel="stylesheet" />
<script type="text/javascript" src="~/Scripts/DataTables/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="~/Scripts/bootstrap.min.js"></script>
<script src="http://maps.google.com/maps/api/js?key=MyKey"></script>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="icon" href="favicon.ico" type="image/ico" />
<link rel="shortcut icon" href="~/favicon.ico" /></head>
任何幫助,將不勝感激
我使用jQuery的都和3.1.0鉻,還使用了.prop但沒有用 – faisal1208