新手 求教 Uncaught TypeError: $(...).touchSlider is not a function
$(document).ready(function(){$(".picc").hover(function(){$("#btn_prev,#btn_next").fad...
$(document).ready(function(){
$(".picc").hover(function(){
$("#btn_prev,#btn_next").fadeIn()
},function(){
$("#btn_prev,#btn_next").fadeOut()
});
$dragBln = false;
//这就是错误的地方说是Uncaught TypeError: $(...).touchSlider is not a function
$("image").touchSlider({
flexible : true,
speed : 200,
btn_prev : $("#btn_prev"),
btn_next : $("#btn_next"),
paging : $(".select a"),
counter : function (e){
$(".select a").removeClass("on").eq(e.current-1).addClass("on");
}
});
$("image").bind("mousedown", function() {
$dragBln = false;
});
$("image").bind("dragstart", function() {
$dragBln = true;
});
$("image a").click(function(){
if($dragBln) {
return false;
}
});
timer = setInterval(function(){
// $("#btn_next").click();
}, 1000);
$(".picc").hover(function(){
clearInterval(timer);
},function(){
timer = setInterval(function(){
$("#btn_next").click();
},1000);
});
$("image").bind("touchstart",function(){
clearInterval(timer);
}).bind("touchend", function(){
timer = setInterval(function(){
$("#btn_next").click();
}, 1000);
});
});
单独拿出来用 是可以实现的,但是合并到项目中就出现这个问题 我是新手! 展开
$(".picc").hover(function(){
$("#btn_prev,#btn_next").fadeIn()
},function(){
$("#btn_prev,#btn_next").fadeOut()
});
$dragBln = false;
//这就是错误的地方说是Uncaught TypeError: $(...).touchSlider is not a function
$("image").touchSlider({
flexible : true,
speed : 200,
btn_prev : $("#btn_prev"),
btn_next : $("#btn_next"),
paging : $(".select a"),
counter : function (e){
$(".select a").removeClass("on").eq(e.current-1).addClass("on");
}
});
$("image").bind("mousedown", function() {
$dragBln = false;
});
$("image").bind("dragstart", function() {
$dragBln = true;
});
$("image a").click(function(){
if($dragBln) {
return false;
}
});
timer = setInterval(function(){
// $("#btn_next").click();
}, 1000);
$(".picc").hover(function(){
clearInterval(timer);
},function(){
timer = setInterval(function(){
$("#btn_next").click();
},1000);
});
$("image").bind("touchstart",function(){
clearInterval(timer);
}).bind("touchend", function(){
timer = setInterval(function(){
$("#btn_next").click();
}, 1000);
});
});
单独拿出来用 是可以实现的,但是合并到项目中就出现这个问题 我是新手! 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询