if(ksarea+scrollheight>=divtop){ hist(data_2,"myChart_2"); } }//如何满足条件,只执行一次函数呢,现在只要满足条件函数就一直在执行。
1 回答
慕雪6442864
TA贡献1812条经验 获得超5个赞
var todoSome = true;
var height = ksarea + scrollheight;
if(height >= divtop && todoSome){
hist(data_2,"myChart_2");
todoSome = false;
} else if(height < divtop) {
todoSome = true;
}
添加回答
举报
0/150
提交
取消