|
谁能解答下为什么下面的事件不触发,谢谢了!
//页面初始化
Model.prototype.modelLoad = function(event){
//页面下拉时页头显示背景颜色
var _this=this;
$(this.comp("homeContent").domNode).scroll(function() {
if($(this).scrollTop()>100){
$(".x-titlebar", _this.getRootNode()).css({"background-color":"rgba(0,0,0,0.8)"});
} else {
$(".x-titlebar", _this.getRootNode()).css({"background-color":"rgba(0,0,0,0)"});
}
});
}; |
|