所以我尝试在这里搜索,我发现了类似的问题,但实际上并不像我的那样,我可以使用..所以问题就是我使用jquery
循环插件,一切都很好。
所以这是我在页面上使用的jquery,让我们说page.html
$(function() {
$('#rotation').cycle({
fx:'scrollRight',
timeout: 0,
speed: 500,
startingSlide: 0
});
$('#goto1').click(function() {
$('#rotation').cycle(0);
return false;
});
$('#goto2').click(function() {
$('#rotation').cycle(1);
return false;
});
});
您的猜测是我使用这样的导航来完成:
<li><a href="#" id="goto1">Link1</a></li>
<li><a href="#" id="goto2">Link2</a></li>
最终的div结构将是
<div id="rotation">
<div> Content of first cycle </div>
<div> Content of second cycle </div>
</div>
这很好。现在我的问题是,我可以定位,让我们说,来自index.html的div二吗?页面不是php,我的想法是从索引创建一个href到page.html#goto2并以某种方式使用它,但由于它不是php我不知道我该怎么做...如果有人知道一个技巧我会很感激。感谢。
答案 0 :(得分:0)
根据您想要的标签发送查询字符串为?tab=1
,tab=2
,tab=3
现在根据QueryString值更改选项卡设置选项卡。为简单起见,我们将id添加到列表内的锚点中,并动态地将href附加到每个锚点。
// Run this on document ready.
var listItemsofThumbnail = $("ul.sidebarTabset li");
listItemsofThumbnail.each(function (idx) {
var licount = idx + 1;
$(this).addClass("currentactive1_s" + licount)
var linkurl = $(this).find("a").attr("href");
$(this).find("a").attr("href", linkurl + "?tab=" + licount);
});
var currenturl = window.location.href;
var QuerystringValue = getParameterByName("tab");
switchImages(QuerystringValue);
// document ready end.
function switchImages(tab) {
if (tab == null || tab == undefined || tab == 0) tab = 1; // catch any bad data
DeactivateAllTab();
ActivateTab(tab - 1);
}
// Dsiplays the li
function ActivateTab(i) {
if (!($("#slider1 li#currentactive1_s" + i).hasClass("currentactive1_on"))) {
$("#slider1 li#currentactive1_s" + i).addClass("currentactive1_on");
$("#slider1 li#currentactive1_s" + i).css({ "float": "left", "position": "relative", "opacity": 1, "zIndex": 2, "display": "list-item" });
}
var thumbnailindex = i + 1;
if (!($(".sidebarTabset li.currentactive1_s" + thumbnailindex).hasClass("active"))) {
$(".sidebarTabset li.currentactive1_s" + thumbnailindex).addClass("active");
}
}
// Hides the li
function DeactivateAllTab() {
$("#slider1 > li").each(function () {
$(this).removeClass("currentactive1_on");
$(this).css({ "float": "none", "position": "absolute", "opacity": 0, "zIndex": 0 });
});
$(".sidebarTabset li").each(function () {
if ($(this).hasClass("active")) {
$(this).removeClass("active");
}
});
}
现在我们的jquery循环自动添加了类currentactive1_on_tab name
,因此我们使用它来将幻灯片映射到幻灯片。另外,我们在activate
和deactivate
函数中相应地更改了css,以便像jquery循环一样工作。
如果您有任何问题,请与我们联系。