浮动客服问题

2016-07-07 16:03 来源:www.chinab4c.com 作者:ecshop专家



我想问一下,浮动客服怎么样改自己的。还有不显示在线的 未命名.jpg 下面是ServiceQQ.js文件代码
  1. document.write("<div class='QQbox' id='divQQbox' >");
  2. document.write("<div class='Qlist' id='divOnline' onmouseout='hideMsgBox(event);' style='display : none;'>");
  3. document.write("<div class='t'></div>");
  4. document.write("<div class='infobox'>我们营业的时间<br>9:00-24:00</div>");
  5. document.write("<div class='con'>");
  6. document.write("<ul>");
  7. document.write("<li class=odd><a href='http://wpa.qq.com/msgrd?V=1&amp;Uin=123456&amp;Site=6183048&amp;Menu=yes' target='_blank'><img src=' http://wpa.qq.com/pa?p=1:123456:4'border='0' alt='6183048' />6183048</a></li>");
  8. document.write('<li><img src="OKQQ/images/msn.gif" width="18" height="17" border="0" alt="karyronk@hotmail.com" /> <a href="msnim:chat?contact=karyronk@hotmail.com">karyronk@hotmail.com</a></li>');
  9. document.write('<li><a href="http://amos1.taobao.com/msg.ww?v=2&uid=游戏VI&s=2" target="_blank"><img src="http://amos1.taobao.com/online.ww?v=2&uid=游戏VI&s=2" width="16" height="16" border="0" alt="游戏VI" />游戏VI</a></li>');

  10. document.write('<tr><td><li>咨询电话:0662-7723633</li></td></tr>');
  11. document.write("</ul>");
  12. document.write("</div>");
  13. document.write("<div class='b'></div>");
  14. document.write("</div>");
  15. document.write("<div id='divMenu' onmouseover='OnlineOver();'><img src='OKQQ/images/qq_1.gif' class='press' alt='在线咨询'></div>");
  16. document.write("</div>");

  17. //<![CDATA[
  18. var tips; var theTop = 145/*这是默认高度,越大越往下*/; var old = theTop;
  19. function initFloatTips() {
  20. tips = document.getElementById('divQQbox');
  21. moveTips();
  22. };
  23. function moveTips() {
  24. var tt=50;
  25. if (window.innerHeight) {
  26. pos = window.pageYOffset
  27. }
  28. else if (document.documentElement && document.documentElement.scrollTop) {
  29. pos = document.documentElement.scrollTop
  30. }
  31. else if (document.body) {
  32. pos = document.body.scrollTop;
  33. }
  34. pos=pos-tips.offsetTop+theTop;
  35. pos=tips.offsetTop+pos/10;

  36. if (pos < theTop) pos = theTop;
  37. if (pos != old) {
  38. tips.style.top = pos+"px";
  39. tt=10;
  40. //alert(tips.style.top);
  41. }

  42. old = pos;
  43. setTimeout(moveTips,tt);
  44. }
  45. //!]]>
  46. initFloatTips();



  47. function OnlineOver(){
  48. document.getElementById("divMenu").style.display = "none";
  49. document.getElementById("divOnline").style.display = "block";
  50. document.getElementById("divQQbox").style.width = "170px";
  51. }

  52. function OnlineOut(){
  53. document.getElementById("divMenu").style.display = "block";
  54. document.getElementById("divOnline").style.display = "none";

  55. }

  56. if(typeof(HTMLElement)!="undefined") //给firefox定义contains()方法,ie下不起作用
  57. {
  58. HTMLElement.prototype.contains=function(obj)
  59. {
  60. while(obj!=null&&typeof(obj.tagName)!="undefind"){ //通过循环对比来判断是不是obj的父元素
  61.     if(obj==this) return true;
  62.     obj=obj.parentNode;
  63.   }
  64. return false;
  65. };
  66. }

  67. function hideMsgBox(theEvent){ //theEvent用来传入事件,Firefox的方式
  68.   if (theEvent){
  69.   var browser=navigator.userAgent; //取得浏览器属性
  70.   if (browser.indexOf("Firefox")>0){ //如果是Firefox
  71.    if (document.getElementById('divOnline').contains(theEvent.relatedTarget)) { //如果是子元素
  72.    return; //结束函式
  73. }
  74. }
  75. if (browser.indexOf("MSIE")>0){ //如果是IE
  76. if (document.getElementById('divOnline').contains(event.toElement)) { //如果是子元素
  77. return; //结束函式
  78. }
  79. }
  80. }
  81. /*要执行的操作*/
  82. document.getElementById("divMenu").style.display = "block";
  83. document.getElementById("divOnline").style.display = "none";
  84. }





复制代码

回答:
直接就按着改呀~改你的QQ号什么的

找到改了就行啊··