下面的js谁能帮忙改一下?是右漂浮QQ客服的JS。想让它在网页一打开的时候就呈显示状态。

<scriptlanguage="javascript">functionshowandhide(h_id,hon_class,hout_class,c_id,total... <script language="javascript">
function showandhide(h_id,hon_class,hout_class,c_id,totalnumber,activeno) {
var h_id,hon_id,hout_id,c_id,totalnumber,activeno;
for (var i=1;i<=totalnumber;i++) {
document.getElementById(c_id+i).style.display='none';
document.getElementById(h_id+i).className=hout_class;
}
document.getElementById(c_id+activeno).style.display='block';
document.getElementById(h_id+activeno).className=hon_class;
}
var tips;
var theTop = 40;
var old = theTop;
function initFloatTips()
{
tips = document.getElementById('nyschool');
moveTips();
}
function moveTips()
{
var tt=50;
if (window.innerHeight)
{
pos = window.pageYOffset
}else if (document.documentElement && document.documentElement.scrollTop) {
pos = document.documentElement.scrollTop
}else if (document.body) {
pos = document.body.scrollTop;
}
pos=pos-tips.offsetTop+theTop;
pos=tips.offsetTop+pos/10;
if (pos < theTop){
pos = theTop;
}
if (pos != old) {
tips.style.top = pos+"px";
tt=10; //alert(tips.style.top);
}
old = pos;
setTimeout(moveTips,tt);
}
initFloatTips();
if(typeof(HTMLElement)!="undefined") //给firefox定义contains()方法,ie下不起作用
{
HTMLElement.prototype.contains=function (obj)
{
while(obj!=null&&typeof(obj.tagName)!="undefind"){ //通过循环对比来判断是不是obj的父元素
    if(obj==this) return true;
     obj=obj.parentNode;
   }
return false;
}
}
function show()
{
document.getElementById("meumid").style.display="none"
document.getElementById("contentid").style.display="block"
}
function hideMsgBox(theEvent){
if (theEvent){
var browser=navigator.userAgent;
if (browser.indexOf("Firefox")>0){ //如果是Firefox
if (document.getElementById("contentid").contains(theEvent.relatedTarget)) { //如果是子元素
return
}
}
if (browser.indexOf("MSIE")>0 || browser.indexOf("Presto")>=0){ //如果是IE
if (document.getElementById('contentid').contains(event.toElement)) { //如果是子元素
return; //结束函式
}
}
}
document.getElementById("meumid").style.display = "block";
document.getElementById("contentid").style.display = "none";
}
</script>
展开
 我来答
濮焮戎fO
2011-11-23 · TA获得超过371个赞
知道小有建树答主
回答量:402
采纳率:100%
帮助的人:490万
展开全部
你上面的 show()方法应当就是你的显示代码吧,如果是的话你在window.onload里调用这个就行了。
百度网友906e060
2011-11-23 · TA获得超过232个赞
知道小有建树答主
回答量:292
采纳率:0%
帮助的人:194万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script language="javascript">
window.onscroll=function(){
document.getElementById("dqq").style.top=document.documentElement.scrollTop+55;
}
</script>
</head>
<body>
<div style="height:1000px;">1</div>
<div id="dqq" style="width:120px; position:absolute; background-image:url(image/QQ.png); height:200px; top:55px; left:90%; background-color:#6699cc;" align="center">
<font style="font-size:13px; font-weight:bold;" >联系我们</font>
<div style="border-top:solid 1px white;">
<br />
<br />
</div>
</div>
</body>
</html>
我这个简单点
追问
你那个好像不能关闭。不能关闭的话用户体验度不高,而且会挡住一部分内容。
追答


无标题文档

window.onscroll=function(){
document.getElementById("dqq").style.top=document.documentElement.scrollTop+55;
}

1

关闭

要自己去优化的啊,我又不知道你到底做什么用,页面多大,不可能正好一模一样的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式