let a = localStorage.getItem('homeview');
if(a == null || a == 100){return;}
else{$('#panelb').width(a + '%');}
因此,如果设置了panelb
并且在homeview
以下,则会调整100
的大小。
但是这种情况发生得很晚,因为panelb
首先是全角(100%),几秒钟后-调整大小即可。但是,这看起来并不专业。有没有更好的方法来隐藏div
?
上面的代码在页面的末尾。我试图将其放在head
标签和document.ready
函数中-没有帮助。
有没有办法在加载CSS之前检测homeview
变量并将其值放在CSS中?
答案 0 :(得分:0)
如果您使用的是jQuery,则可以使用
使用hide函数 data = this.getData();
getData() {
let countries = 'US,Germany,UK,Japan,Italy,Greece'.split(','),
data = [];
for (let i = 0; i < countries.length; i++) {
data.push({
country: countries[i],
sales: Math.random() * 10000,
expenses: Math.random() * 5000,
downloads: Math.round(Math.random() * 20000)
});
}
return new CollectionView(data);
}