网页MSN,QQ,Skype,贸易通,雅虎通在线客服代码合集

1.如何在网页上显示腾讯QQ在线洽谈?

QQ在线咨询代码(qq在线交谈代码/qq在线客服代码/qq在线状态代码/qq在线客服代码)
(将123456换成你的号码,site后面换成你的网站就可以了)

1
<a target="blank" href="http://wpa.qq.com/msgrd?V=1&Uin=12345678&Site=精品空间论坛& Menu=yes"><img border="0" SRC=http://wpa.qq.com/pa?p=1:12345678:6 alt="点击这里给我发消息" align="absmiddle"></a>

更多的生成显示QQ在线状态的代码,请查看腾讯官方网站
http://imis.qq.com/webpresence/code.shtml
你只需要填写你的号码,网站名称以及提示就可以点击生成就可以生成QQ在线状态的代码,拷贝生成的代码加入网页即可

2.阿里巴巴贸易通在线状态代码生成,eric改成你的ID就行了,还有ALT改成你的内容

1
<a target=_blank href="http://scs1.sh1.china.alibaba.com/msg.atc?v=1&uid=mengsajewel"><img _fcksavedurl=""http://scs1.sh1.china.alibaba.com/msg.atc?v=1&uid=mengsajewel"><img" border=0 src="http://scs1.sh1.china.alibaba.com/online.atc?v=1&uid=eric&s=2" alt="精品空间论坛 eric" align="absmiddle"></a>

更多的阿里巴巴贸易通在线状态代码生成样式,请查看阿里巴巴官方网站
http://club.china.alibaba.com/club/block/alitalk/alitalkfire.html


3.skype在线状态代码生成
将eric换成你的skype ID就可以了,需要在skype个人账户里设置对任何人显示状态

1
<a href="skype:eric?call" _fcksavedurl=""skype:venky1979?call"" on-click="return skypeCheck();"><img src=http://mystatus.skype.com/smallclassic/eric style="border: none;" alt="Call me!" /></a>

更多的skype在线状态代码生成样式,请查看skype的官方网站
http://www.skype.com/share/buttons/

4.如何生成MSN在线状态代码
可以设置自定义显示图片,不过检测速度有点慢,另外一部分人在msn的配置中,设置了不加好友就不显示在线。这是为了个人隐私保护,但这样会显示状态未知或者离线。如果你不介意别人看到你,就开启那个选项就好了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
    <!--MSN即时交谈代码开始 -->
    <Script language=javascript>
    function SendMSNMessage(name)
    {
    //Send a message through MSN , only for IE
    //and you must have installed MSN or Window Message
    MsgrObj.InstantMessage(name);
    }
    function AddMSNContact(name)
    {
    //Add a people to MSN , only for IE
    //and you must have installed MSN or Window Message
    MsgrObj.AddContact(0, name);
    }
    </script>
    <object id="MsgrObj" classid="clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28"
    codetype="application/x-
    oleobject"
width="0" height="0"></object>
    <input type=image src="images/MSN.gif" alt="在线MSN交流" onClick="SendMSNMessage
    ('[email]meskyes@hotmail.com[/email]')"
/>
    <!--MSN在线交谈代码结束 -->

6:雅虎

将admin@hichf.com换成您自己的:

1
<a href="http://cn.webmessenger.yahoo.com/index.php?t=1&to=eWlkPXdlc3RreUB5YWhvby5jbg--&sig=cf3f672c1bd9ada33783d2c5dd6cca855a8d2532" target="_blank"><img src="http://opium3.msg.vip.mud.yahoo.com/online?u=admin@hichf.com&t=1&l=cn" alt="在网页上就能直接与我们交谈!" width=82 height=22 hspace="5" border="0" align="absmiddle" /></a>

7.在线客服的代码

有很多朋友问我在线客服的代码,貌似网上也找不到好用的,因此打算把自己珍藏的代码拿出来给大家分性享一下,很好用。

按钮部分,我是用图片来做例子

1
2
3
4
5
6
    <SPAN style="CURSOR: hand"
    onclick="javascript:addMSN('[email]admin@hichf.com[/email]');"><IMG
    src="kefu.gif" border=0> </SPAN>
    <DIV style="DISPLAY: none">
    <OBJECT id=MsgrUIA height=0 codeType=application/x-oleobject width=0
    classid=clsid:B69003B3-C55E-4b48-836C-BC5946FC3B28></OBJECT></DIV>

JS部分:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    <SCRIPT language=javascript>
    <!--
    function addMSN (address) {
       if (MsgrUIA.MyStatus == 1)
       {
       alert('您的MSN没有登陆,请先登陆');
       }
       else if(MsgrUIA.MyStatus == 2 || MsgrUIA.MyStatus == 10 || MsgrUIA.MyStatus == 14 || MsgrUIA.MyStatus == 34 || MsgrUIA.MyStatus == 50 || MsgrUIA.MyStatus == 66 || MsgrUIA.MyStatus == 6) {   //2,10, 14, 34, 50,66,6
       MsgrUIA.InstantMessage(address);
       }
       else if (MsgrUIA.MyStatus == 512 || MsgrUIA.MyStatus == 768)
       {
       alert('您的MSN正在登陆,请稍等');
       }
       else {
       alert('错误代码:'+   MsgrUIA.MyStatus   + '。您没有安装MSN或使用的不是IE浏览器,请安装MSN并手动添加' + address );
       }
    }
    -->
    </SCRIPT>

ENGLISH

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    <SCRIPT language=javascript>
    <!--
    function addMSN (address) {
       if (MsgrUIA.MyStatus == 1)
       {
       alert('Add a people to MSN , only for IE and you must have installed MSN or Window Message');
       }
       else if(MsgrUIA.MyStatus == 2 || MsgrUIA.MyStatus == 10 || MsgrUIA.MyStatus == 14 || MsgrUIA.MyStatus == 34 || MsgrUIA.MyStatus == 50 || MsgrUIA.MyStatus == 66 || MsgrUIA.MyStatus == 6) {   //2,10, 14, 34, 50,66,6
       MsgrUIA.InstantMessage(address);
       }
       else if (MsgrUIA.MyStatus == 512 || MsgrUIA.MyStatus == 768)
       {
       alert('Logining Now,Please wait!');
       }
       else {
       alert('Error:'+   MsgrUIA.MyStatus   + '。Send a message through MSN , only for IE and you must have installed MSN or Window Message' + address );
       }
    }
    -->
    </SCRIPT>

以上代码已经不支持msn8.0,MSN 8.0的代码

1
<A title="请确保XP版本以上的Windows并安装好MSN,或者手动添加地址。" href="msnim:chat?contact=admin@hichf.com"   target=_blank>给zanpo发消息</A>

收藏自:CHF精品论坛