怎么实现网上及时聊天呀 ?
就是像QQ一样的窗口,打开网页时自动弹出,可以给服务器置守的人聊天,谁知道有甚么方法可以实现呢 ?
难道AJAX?Application?
http://www.codeproject.com/useritems/simplechat.asp
[此贴子已经被作者于2006-10-26 13:57:47编辑过]
论坛是用ASP做的我知道怎么弄的
function ow(obj) {
URL=obj.href;
width=510;
height=220;
var left = ( screen.width - width ) / 2;
var top = ( screen.height - height ) / 2;
window.open(URL,'','width=510,height=220,top='+top+',left='+left+',scrollbars=0,resizable=0');
return false;
}
<a href="" target="_blank" title="请点击左键!来源网址" onclick="return ow(this)" >深爱着你</a>
这是我在百度是整合下来的代码,你参考一下啊