show()hide()在Firefox中不起作用,但在所有其他浏览器中工作
这里我调用一个JavaScript函数hideanddisplay()
来隐藏和显示使用添加的菜单…
使用函数的代码:
hiii gud morning
通过调用此函数,应根据要求隐藏和显示下面的代码…
这是隐藏和显示的function:
function hideanddisplay() { var cookiewval = getMyCookie("status"); if (cookiewval == "hide") { $("#sohamMenu").show(500); document.cookie = "status=show;"; } else { $("#sohamMenu").hide(500); document.cookie = "status=hide;"; } function getMyCookie(name) { var prefix = name + "="; var start = document.cookie.indexOf(prefix) if (start == -1) { return null; } var end = document.cookie.indexOf(";", start + prefix.length) if (end == -1) { end = document.cookie.length; } var tempString = document.cookie var value = tempString.substring(start + prefix.length, end) return unescape(value); }
我得到了答案!!!! yoohooo … !!! Show()和hide()对我不起作用..我试过fadeIn()fadeOut()… bingo !!!
$("#sohamMenu").fadeIn(500); $("#sohamMenu").fadeOut(500);