|
|
|
รบกวนช่วยดู Error ของสคริป beautiful-jquery-sliders ที่แจกในกระทู้ [Tips, Tricks And Tools ในการพัฒนาเว็บไซต์ครับ ใครมีเอามาฝากกันตรงนี้] หน่อยครับ |
|
|
|
|
|
|
|
คือผมไปเห็นเจ้านี่ เข้า
http://www.dreamcss.com/2009/04/create-beautiful-jquery-sliders.html
แล้วเกิดสนใจจึงเอามาใส่ในงานของผมดูแล้วปรากฏว่า มันฟ้อง Error ใน IE ตรงแถบซ้ายล่าง(ขึ้นเป็นเครื่องหมายตกใจสีเหลือง) ใน Firefox ใช้ Firebug จับดูก็พบว่า Error ตรงบริเวณ
บรรทัดนี้ครับ(บรรทัดที่ 53)
$.each(css_ims,function(){(new Image()).src=_siteRoot+'css/images/'+this;});
ตอน Error ขึ้นแบบนี้ครับ
Error: css_ims is not defined
Source File: http://localhost:52099/Webjob/js/scripts.js
Line: 53
ตอนแรกผมคิดว่าเกิดจากที่ผมไปปรับแต่งขนาดหรือ การวางรูปแบบใน CSS จึง Error แต่พอลองเปิดไฟล์ต้นฉบับดูก็พบว่า Error แบบเดียวกันครับกระผมไม่แน่ใจว่า ใน Script มีการ Lock Path ไว้รึเปล่าครับ ว่าไม่ให้เปลี่ยนที่ ของรูป
ยังไงรบกวน ท่านที่เคยนำไปใช้ด้วยนะครับ ไม่ทราบว่าแก้ตรงไหนเอ่ย ผมอ่าน JS ไม่เป็นซะด้วย
อันนี้คือ Code ทั้งหมดครับ
Code (JavaScript)
window.onerror=function(desc,page,line,chr){
/* alert('JavaScript error occurred! \n'
+'\nError description: \t'+desc
+'\nPage address: \t'+page
+'\nLine number: \t'+line
);*/
}
$(function(){
$('a').focus(function(){this.blur();});
SI.Files.stylizeAll();
slider.init();
$('input.text-default').each(function(){
$(this).attr('default',$(this).val());
}).focus(function(){
if($(this).val()==$(this).attr('default'))
$(this).val('');
}).blur(function(){
if($(this).val()=='')
$(this).val($(this).attr('default'));
});
$('input.text,textarea.text').focus(function(){
$(this).addClass('textfocus');
}).blur(function(){
$(this).removeClass('textfocus');
});
var popopenobj=0,popopenaobj=null;
$('a.popup').click(function(){
var pid=$(this).attr('rel').split('|')[0],_os=parseInt($(this).attr('rel').split('|')[1]);
var pobj=$('#'+pid);
if(!pobj.length)
return false;
if(typeof popopenobj=='object' && popopenobj.attr('id')!=pid){
popopenobj.hide(50);
$(popopenaobj).parent().removeClass(popopenobj.attr('id').split('-')[1]+'-open');
popopenobj=null;
}
return false;
});
$('p.images img').click(function(){
var newbg=$(this).attr('src').split('bg/bg')[1].split('-thumb')[0];
$(document.body).css('backgroundImage','url('+_siteRoot+'images/bg/bg'+newbg+'.jpg)');
$(this).parent().find('img').removeClass('on');
$(this).addClass('on');
return false;
});
$(window).load(function(){
$.each(css_ims,function(){(new Image()).src=_siteRoot+'css/images/'+this;});
$.each(css_cims,function(){
var css_im=this;
$.each(['blue','purple','pink','red','grey','green','yellow','orange'],function(){
(new Image()).src=_siteRoot+'css/'+this+'/'+css_im;
});
});
});
$('div.sc-large div.img:has(div.tml)').each(function(){
$('div.tml',this).hide();
$(this).append('<a href="#" class="tml_open"> </a>').find('a').css({
left:parseInt($(this).offset().left)+864,top:parseInt($(this).offset().top)+1
}).click(function(){
$(this).siblings('div.tml').slideToggle();
return false;
}).focus(function(){this.blur();});
});
});
var slider={
num:-1,
cur:0,
cr:[],
al:null,
at:10*1000,
ar:true,
init:function(){
if(!slider.data || !slider.data.length)
return false;
var d=slider.data;
slider.num=d.length;
var pos=Math.floor(Math.random()*1);//slider.num);
for(var i=0;i<slider.num;i++){
$('#'+d[i].id).css({left:((i-pos)*1000)});
$('#slide-nav').append('<a id="slide-link-'+i+'" href="#" onclick="slider.slide('+i+');return false;" onfocus="this.blur();">'+(i+1)+'</a>');
}
$('img,div#slide-controls',$('div#slide-holder')).fadeIn();
slider.text(d[pos]);
slider.on(pos);
slider.cur=pos;
window.setTimeout('slider.auto();',slider.at);
},
auto:function(){
if(!slider.ar)
return false;
var next=slider.cur+1;
if(next>=slider.num) next=0;
slider.slide(next);
},
slide:function(pos){
if(pos<0 || pos>=slider.num || pos==slider.cur)
return;
window.clearTimeout(slider.al);
slider.al=window.setTimeout('slider.auto();',slider.at);
var d=slider.data;
for(var i=0;i<slider.num;i++)
$('#'+d[i].id).stop().animate({left:((i-pos)*1000)},1000,'swing');
slider.on(pos);
slider.text(d[pos]);
slider.cur=pos;
},
on:function(pos){
$('#slide-nav a').removeClass('on');
$('#slide-nav a#slide-link-'+pos).addClass('on');
},
text:function(di){
slider.cr['a']=di.client;
slider.cr['b']=di.desc;
slider.ticker('#slide-client span',di.client,0,'a');
slider.ticker('#slide-desc',di.desc,0,'b');
},
ticker:function(el,text,pos,unique){
if(slider.cr[unique]!=text)
return false;
ctext=text.substring(0,pos)+(pos%2?'-':'_');
$(el).html(ctext);
if(pos==text.length)
$(el).html(text);
else
window.setTimeout('slider.ticker("'+el+'","'+text+'",'+(pos+1)+',"'+unique+'");',30);
}
};
// STYLING FILE INPUTS 1.0 | Shaun Inman <http://www.shauninman.com/> | 2007-09-07
if(!window.SI){var SI={};};
SI.Files={
htmlClass:'SI-FILES-STYLIZED',
fileClass:'file',
wrapClass:'cabinet',
fini:false,
able:false,
init:function(){
this.fini=true;
},
stylize:function(elem){
if(!this.fini){this.init();};
if(!this.able){return;};
elem.parentNode.file=elem;
elem.parentNode.onmousemove=function(e){
if(typeof e=='undefined') e=window.event;
if(typeof e.pageY=='undefined' && typeof e.clientX=='number' && document.documentElement){
e.pageX=e.clientX+document.documentElement.scrollLeft;
e.pageY=e.clientY+document.documentElement.scrollTop;
};
var ox=oy=0;
var elem=this;
if(elem.offsetParent){
ox=elem.offsetLeft;
oy=elem.offsetTop;
while(elem=elem.offsetParent){
ox+=elem.offsetLeft;
oy+=elem.offsetTop;
};
};
};
},
stylizeAll:function(){
if(!this.fini){this.init();};
if(!this.able){return;};
}
};
Tag : JavaScript, jQuery, Web (ASP.NET), VS 2008 (.NET 3.x)
|
ประวัติการแก้ไข 2010-10-27 08:07:47 2010-10-27 08:34:48
|
|
|
|
|
Date :
2010-10-27 08:05:23 |
By :
13crowns |
View :
1598 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
if(css_ims != undefined){
$.each(css_ims,function(){(new Image()).src=_siteRoot+'css/images/'+this;});
}
|
|
|
|
|
Date :
2010-10-27 18:41:56 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หรือไม่ลอง alert(css_ims); ว่ามันได้ค่าอะไร ก็ if อันนั้นแหละครับ
|
|
|
|
|
Date :
2010-10-27 18:42:32 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ if(css_ims != undefined){ ก็ฟ้อง Error เหมือนเดิมครับ
พอลอง alert แล้วไม่ออกครับผม สงกะสัยว่ามันจะไม่มีค่า Error เหมือนเดิมอีก
|
|
|
|
|
Date :
2010-10-27 20:03:33 |
By :
13crowns |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอ ครอบเป็นคอมเม้นไว้แบบนี้
Code (JavaScript)
$(window).load(function(){
//$.each(css_ims,function(){(new Image()).src=_siteRoot+'css/images/'+this;});
//$.each(css_cims,function(){
//var css_im=this;
//$.each(['blue','purple','pink','red','grey','green','yellow','orange'],function(){
//(new Image()).src=_siteRoot+'css/'+this+'/'+css_im;
//});
//});
});
ก็ไม่ Error แล้วล่ะครับ ผมไม่แน่ใจว่ามันเอาไว้ทำอะไร แต่ไม่มีผลกับการแสดงผล ณ ตอนนี้ครับ
ขอบคุณพี่วินมากครับ
|
ประวัติการแก้ไข 2010-10-27 20:10:24
|
|
|
|
Date :
2010-10-27 20:09:47 |
By :
13crowns |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อย่าไป comment ครับ
var css_ims = [];
var css_cims = [];
$.each(css_ims,function(){(new Image()).src=_siteRoot+'css/images/'+this;});
$.each(css_cims,function(){
|
|
|
|
|
Date :
2010-10-27 23:53:27 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถึกกกต้องครับ
|
|
|
|
|
Date :
2010-10-28 00:17:52 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะค่ะ เจอปัญหาแล้วมาเจอพอดีเลย
|
|
|
|
|
Date :
2011-06-06 17:52:37 |
By :
ตต. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|