我正在尝试修改javascript手风琴菜单以满足老板的需求。然而,既然我已经进行了大部分的调整,那么我就会遇到一个虚拟的砖墙。函数expandInit()不接受我传递给它的参数。我一直得到“对象预期”错误,但我已经使用typeof()测试了该函数的参数,并返回该参数是一个Object。所以我很难过,任何人都可以解决这个问题会非常有帮助。
以下是相关代码:
function $(id){
return document.getElementById(id);
}
function expandTimer(div){
if(getHeight(div) < div.maxh){
var velocity = Math.round((div.maxh - getHeight(div)) / div.speed);
velocity = (velocity < 1) ? 1 : v;
velocity = (getHeight(div) + velocity);
setHeight(div, velocity+'px');
div.style.opacity = (velocity / div.maxh);
div.style.filter = 'alpha(opacity = '+(velocity * 100 / div.maxh)+');';
} else {
setHeight(div, div.maxh);
clearInterval(div.refRate);
}
}
//arg types are String, Int, and, String.
function accordian(mother, speed, alternate){
var motherObj = $(mother);
motherObj.activeNode='';
var allDivs = motherObj.getElementsByTagName('div');
for (var i = 0; i < allDivs.length; i++){
var divID = allDivs[i].id;
if (divID.substr(divID.indexOf('-') + 1, divID.length) == 'header'){
var contentID = divID.substr(0, divID.indexOf('-'))+'-content';
var divObj = $(divID);
divObj.contentNode = contentID;
divObj.hightlight = alternate;
var contentObj = $(contentID);
contentObj.style.display = 'none';
contentObj.style.overflow = 'hidden';
contentObj.maxh = getHeight(contentObj);
contentObj.speed = speed;
contentObj.refRate;
divObj.onmouseover = function(){
if (this.parentNode.activeNode != ''){
collapseInit($(this.parentNode.activeNode));
}
alert (typeof($(this.contentNode))); //returns 'object'
//code executes fine up until here.
expandInit($(this.contentNode));
this.parentNode.activeNode = this.contentNode;
}
}
}
}
虽然我没有包含collapseInit()代码,但它遇到了同样的问题。可以说上面提到的所有其他功能都按预期工作。
编辑:抱歉,没有包含正确的功能。这是expandInit()函数:function expandInit(div){
alert("in expandInit"); //<---does not execute.
setDisplay(div,'block');
div.style.height='0px';
clearInterval(div.refRate);
div.refRate = setInterval('expandTimer('+div+')', 10);
}
答案 0 :(得分:0)
我没有看到expandInit函数,但我确实看到了expandTimer函数......