我正在尝试使用部署了iCheck的Square皮肤在我的网站上实现iCheck。
问题是收音机没有获得CSS样式,我无法弄清楚原因。这是我的代码:
在我的document.ready函数中,我有以下代码:
$(function(){
$('input1').iCheck({
radioClass: 'iradio_square-blue',
increaseArea: '20%' // optional
});
});
我像这样调用.js和.css,我已经验证路径是正确的。
<link href="plugins/iCheck/square/blue.css" rel="stylesheet">
<script src="plugins/iCheck/icheck.js"></script>
html看起来像这样:
<input type="radio" name="input1" id="input1" checked></br>
有没有人知道可能导致这种情况的原因?
谢谢!
答案 0 :(得分:0)
-(void) didMoveToWindow{
[super didMoveToWindow];
if (@available(iOS 11.0, *)) {
if (self.window.safeAreaLayoutGuide != nil) {
[[self.contentView bottomAnchor] constraintLessThanOrEqualToSystemSpacingBelowAnchor:self.window.safeAreaLayoutGuide.bottomAnchor multiplier:1.0].active = YES;
}
}
}
选择器应以jquery中的id
开头。
代码
#
应更改为
$('input1').iCheck({