我有这个jQuery脚本我正在尝试实现om Magento并且我尝试过noConflict但它仍然不起作用。 Magento运行原型...我不知道任何原型,所以我如何将这个脚本从jQuery转换为Prototype?!
var active = 0; // starts at zero
var list = $('ul');
list.children('li').eq('0').siblings().hide(); // Hide all except first list element
$('.next').bind('click', function() {
active = active == list.children('li').length-1 ? 0 : active + 1;
});
$('.prev').bind('click', function() {
active = active == 0 ? list.children('li').length-1 : active - 1;
});
var getActive = function() {
return list.children('li').eq(active);
};
$('.prev,.next').bind('click', function() {
getActive().fadeIn().siblings().hide();
});
答案 0 :(得分:3)
var list = $('ul');
'ul'
选择器来获取一些元素。Prototype.Selector.select(expression[, root = document]) → [Element…]
可选步骤5:如果在您遇到更具体的问题的任何时候,请回过头来询问。