DEMO网址:http://epecho.com/tst/index.html
我想在除索引页面之外的每个页面上隐藏幻灯片。 我试过用$(“#slidersection”)隐藏它.hide();作为测试但它会穿上衣服或打破滑块。我想将所有页面都标记为隐藏幻灯片,但是在主页上可以看到它。可以这样做吗?我相信幻灯片在加载时会从其父元素中获取它的大小。
上面的演示中的都在工作,但每个页面都隐藏了演示。
答案 0 :(得分:1)
更改幻灯片的css以显示:none;默认情况下,然后在一个页面上,您希望它从document.ready开始执行$(“#slidersection”)。show();
或者只想添加到整个js文件:
var url = document.location.href;
if (url == 'http://epecho.com/tst/index.html') { $("#sliderSection").show(); }
答案 1 :(得分:0)
为什么不这样做:
if (window.location !== 'http://epecho.com/tst/index.html')
{
$('#slidedeckFrame').hide();
}
这对我有用。