有可能做到这一点吗?
如果页面内的DIV是> 600 px应用背景颜色:红色到#TWO
在JQuery中
我创建了这个,但没有正常工作:
<script type="text/javascript">
$(document).ready(function(){
$.extend($.expr[':'], {
over100pixels: function(a) {
return $(a).height() > 600;
}
});
$('div:over600pixels')
$("#TWO").css("background-color", "red");
});
</script>
答案 0 :(得分:3)
您可以使用:
let cell = dequeueReusableCellWithIdentifier(MyCell.cellIdentifier, forIndexPath: indexPath) as! MyCell
// check cell.textLabel here in the debugger. should be nil.
cell.textLabel.text = "test" // creates textLabel via lazy initialization