我将此代码用于复选框选中事件,但它不起作用。
css
<link href="assets/plugins/bootstrap-switch/static/stylesheets/bootstrap-switch-metro.css" rel="stylesheet" type="text/css" />
html
<div class="switch switch-mini" data-on-label="<i class='icon-sun icon-white'></i>" data-off-label="<i class='icon-sun muted'></i>">
<input id="swWeather" type="checkbox" class="toggle" onclick="toggleWeather()" />
</div>
js
<script src="assets/plugins/bootstrap-switch/static/js/bootstrap-switch.js" type="text/javascript"></script>
如果我使用这种方式,只是视觉样式效果很好,但它不会触发toggleWeather()
功能,但是如果我删除bootstrap-switch.js
,所有视觉样式都会被删除,并且看起来像标准复选框一样标准,尽管它工作得很好。
如何更改复选框选中状态并使用引导开关单击它?
这是我的切换天气代码:
function toggleWeather() {
if (document.getElementById('swWeather').checked)
{ weatherLayer.setMap(map); }
else
{ weatherLayer.setMap(null); }
if (document.getElementById('swCloud').checked)
{ cloudLayer.setMap(map); }
else
{ cloudLayer.setMap(null); }
}
顺便说一句,我将这些开关与这个主题一起使用:http: //www.keenthemes.com/preview/metronic_admin/form_component.html#myModal
这不是很好的例子,但就像 http://jsfiddle.net/UHkN6/