好的,我有一個http://www.eclectogroove.com/new-site滑塊不起作用。第一個問題是當你點擊箭頭按鈕去下一張幻燈片時,在控制檯中出現這些錯誤。滑塊代理滑稽
Uncaught TypeError: Cannot call method 'getElementsByTagName' of null tabs.js:43
Uncaught TypeError: Cannot read property 'top' of null jquery.mCustomScrollbar.js:352
event.returnValue is deprecated. Please use the standard event.preventDefault() instead.
Uncaught TypeError: Cannot read property 'top' of null jquery.mCustomScrollbar.js:352
GET http://localhost/eclectogroove/undefined 404 (Not Found) jquery.min.js:127
GET http://localhost/eclectogroove/undefined 404 (Not Found) jquery.min.js:130
GET http://localhost/eclectogroove/undefined 404 (Not Found) jquery.min.js:130
我不知道爲什麼我收到這些錯誤,但另一個問題是滑塊上的圖像會在約20秒後消失隨機。
這裏是tabs.js
init:function(tabid, dselected){
var menuitems=document.getElementById(tabid).getElementsByTagName("a")
this[tabid+"-menuitems"]=menuitems
for (var x=0; x<menuitems.length; x++){
if (menuitems[x].getAttribute("rel")){
this[tabid+"-menuitems"][x].hasSubContent=true
if (menuscript.disabletablinks)
menuitems[x].onclick=function(){return false}
}
else //for items without a submenu, add onMouseout effect
menuitems[x].onmouseout=function(){this.className=""}
menuitems[x].onclick=function(){menuscript.showsubmenu(tabid, this)}
if (dselected=="auto" && typeof setalready=="undefined" && this.isSelected(menuitems[x].href)){
menuscript.showsubmenu(tabid, menuitems[x])
var setalready=true
}
else if (parseInt(dselected)==x)
menuscript.showsubmenu(tabid, menuitems[x])
}
}
代碼如果你需要我張貼任何代碼或與任何其他信息提供給您,請讓我知道。否則一切都可以在http://www.eclectogroove.com/new-site
預先感謝您!
你可以稱之爲「有趣的滑塊」,並在代碼峽谷出售它? – adeneo
沒有id相冊的元素。這就是爲什麼你得到第一條消息 – stackErr
@stackErr你是對的,我發現使用Chrome的調試器相同。考慮寫一個答案。 – kol