当前位置:首页 » 操作系统 » 韩顺平qq源码

韩顺平qq源码

发布时间: 2022-08-10 11:46:55

1. 韩顺平java从入门到精通所有作业题,和源代码,有的话就发一下呗!非常感谢! 122941467 q q you xiang

谁有的话也发我一个,1990426018 qq邮箱

2. 哪位高人有韩顺平老师的那个满汉楼餐饮管理系统的全部素材、或者全部完整的源代码啊感激不尽!!!

没有全部的,只有韩老师完成的那部分,要不要,说一声!!!

3. 谁有韩顺平老师讲的ajax技术web版多人聊天的源码有的帮忙发一下

php">***userList.php*****

<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>


<title>用户列表</title>

<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>

<scripttype="text/javascript">
<!--

window.resizeTo(200,400);

functionabc(obj){

obj.style.color="red";
obj.style.cursor="hand";

}

functionabc2(obj){

obj.style.color="";


}

//跳出一个聊天的页面
functionabc3(obj){
varname=obj.innerText;

window.open("chatRoom.php?name="+encodeURI(name),"_blank");
}
-->
</script>
</head>

<body>
好友列表
<liid="li1"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">费尔普斯</li>
<liid="li2"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">谢忠君君</li>
<liid="li3"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">姚明</li>
</body>
</html>


***chatRoom.php****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>

<?php
$name=$_GET['name'];
//空格.
$name=trim($name);
//从session
session_start();
$yourname=$_SESSION['username'];
?>
<title>聊天室</title>

<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">

<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage"><scripttype="text/javascript">
<!--
window.resizeTo(400,400);
window.setInterval("getMsg()",10000);

//定义一个ajax引擎
varxmlHttp;

functionsendMsg(){

//根据情况建立ajax引擎
if(window.ActiveXObject){

xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}else{

xmlHttp=newXMLHttpRequest();
}

if(xmlHttp){

varreq="MessageController.php?getter=<?phpecho$name;?>&msg="+document.all.con.value;

xmlHttp.open("get",req,true);

//指定返回的函数
xmlHttp.onreadystatechange=chuli;

//发送
xmlHttp.send(req);

varsendMsg=document.all.con.value;
document.all.mytextares.value+="你说:"+sendMsg+" ";
}
}

functionchuli(){

if(xmlHttp.readyState==4){

if(xmlHttp.status==200){

//!!!
}

}
}


varxmlHttp2;

//每隔一定时间从服务器得到属于自己的消息
functiongetMsg(){

//根据情况建立ajax引擎
if(window.ActiveXObject){

xmlHttp2=newActiveXObject("Microsoft.XMLHTTP");
}else{

xmlHttp2=newXMLHttpRequest();
}

if(xmlHttp2){

varreq="GetMessageCl?getter=<?phpecho$yourname;?>&sender=<?phpecho$name;?>";xmlHttp2.open("get",req,true);

//指定返回的函数
xmlHttp2.onreadystatechange=chuli2;

//发送
xmlHttp2.send(req);


}
}

functionchuli2(){

if(xmlHttp2.readyState==4){

if(xmlHttp2.status==200){

//取出消息的内容

varmesCon=xmlHttp2.responseXml.getElementsByTagName("msg");
vartimes=xmlHttp2.responseXml.getElementsByTagName("msgTime");

if(mesCon[0].firstChild.data!="null"){

//将信息显示到文本预
for(vari=0;i<mesCon.length;i++){

vargetMsg=mesCon[i].firstChild.data;
document.all.mytextares.value+="<%=name%>"+"说:"+getMsg+" ";
}

}
}

}
}-->

</script>

</head>

<body>

<center>
我的聊天室(您在和<fontcolor="red"><?phpecho$name;?></font>聊天)
<textarearows="10"id="mytextares"cols="50"></textarea>
<inputtype="text"id="con">
<inputtype="button"onclick="sendMsg();"value="发送">
</center>
</body>
</html>

4. 求php韩顺平讲ajax web多人离线聊天的源代码



***userList.php*****

<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>


<title>用户列表</title>

<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">
<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>

<scripttype="text/javascript">
<!--

window.resizeTo(200,400);

functionabc(obj){

obj.style.color="red";
obj.style.cursor="hand";

}

functionabc2(obj){

obj.style.color="";


}

//跳出一个聊天的页面
functionabc3(obj){
varname=obj.innerText;

window.open("chatRoom.php?name="+encodeURI(name),"_blank");
}
-->
</script>
</head>

<body>
好友列表<br>
<liid="li1"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">费尔普斯</li>
<liid="li2"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">谢忠君君</li>
<liid="li3"onmouseover="abc(this)"onclick="abc3(this);"onmouseout="abc2(this)">姚明</li>
</body>
</html>


***chatRoom.php****
<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01Transitional//EN">
<html>
<head>

<?php
$name=$_GET['name'];
//空格.
$name=trim($name);
//从session
session_start();
$yourname=$_SESSION['username'];
?>
<title>聊天室</title>

<metahttp-equiv="pragma"content="no-cache">
<metahttp-equiv="cache-control"content="no-cache">
<metahttp-equiv="expires"content="0">

<metahttp-equiv="content-type"content="text/html;charset=utf-8"/>
<metahttp-equiv="keywords"content="keyword1,keyword2,keyword3">
<metahttp-equiv="description"content="Thisismypage">



<scripttype="text/javascript">
<!--
window.resizeTo(400,400);
window.setInterval("getMsg()",10000);

//定义一个ajax引擎
varxmlHttp;

functionsendMsg(){

//根据情况建立ajax引擎
if(window.ActiveXObject){

xmlHttp=newActiveXObject("Microsoft.XMLHTTP");
}else{

xmlHttp=newXMLHttpRequest();
}

if(xmlHttp){

varreq="MessageController.php?getter=<?phpecho$name;?>&msg="+document.all.con.value;





xmlHttp.open("get",req,true);

//指定返回的函数
xmlHttp.onreadystatechange=chuli;

//发送
xmlHttp.send(req);

varsendMsg=document.all.con.value;
document.all.mytextares.value+="你说:"+sendMsg+" ";
}
}

functionchuli(){

if(xmlHttp.readyState==4){

if(xmlHttp.status==200){

//!!!
}

}
}


varxmlHttp2;

//每隔一定时间从服务器得到属于自己的消息
functiongetMsg(){

//根据情况建立ajax引擎
if(window.ActiveXObject){

xmlHttp2=newActiveXObject("Microsoft.XMLHTTP");
}else{

xmlHttp2=newXMLHttpRequest();
}

if(xmlHttp2){

varreq="GetMessageCl?getter=<?phpecho$yourname;?>&sender=<?phpecho$name;?>";



xmlHttp2.open("get",req,true);

//指定返回的函数
xmlHttp2.onreadystatechange=chuli2;

//发送
xmlHttp2.send(req);


}
}

functionchuli2(){

if(xmlHttp2.readyState==4){

if(xmlHttp2.status==200){

//取出消息的内容

varmesCon=xmlHttp2.responseXml.getElementsByTagName("msg");
vartimes=xmlHttp2.responseXml.getElementsByTagName("msgTime");

if(mesCon[0].firstChild.data!="null"){

//将信息显示到文本预
for(vari=0;i<mesCon.length;i++){

vargetMsg=mesCon[i].firstChild.data;
document.all.mytextares.value+="<%=name%>"+"说:"+getMsg+" ";
}

}
}

}
}



-->

</script>

</head>

<body>

<center>
我的聊天室(您在和<fontcolor="red"><?phpecho$name;?></font>聊天)<br>
<textarearows="10"id="mytextares"cols="50"></textarea><br/>
<inputtype="text"id="con">
<inputtype="button"onclick="sendMsg();"value="发送">
</center>
</body>
</html>

5. 求韩顺平满汉楼餐厅管理系统全部素材及源码 数据库 素材 需求文档

我有呀

6. 跪求韩顺平轻松搞定网页设计(html+css+js)中的源代码!谢谢!

链接:

linux视频教程" data_size="" data_filelogo="https://gss0.bdstatic.com//yun-file-logo/file-logo-6.png" data_number="1" data_sharelink="https://pan..com/s/1VI4hQ6_qlch64ISRxMDW7A" data_code="a8t7">

提取码:a8t7

韩顺平linux视频教程一共20讲,专为想要学习linux而又没有基础的用户打造,它为用户由浅入深地讲解了linux的基础知识,包括用户管理、目录结构、常用命令、文件权限、j2ee环境、linux安装演示、shell介绍、tcp.ip基础、进程的介绍和管理、crontab详解、mysql安装配置使用等内容,小编提供的是网络云下载,保存到自己云盘中还可以直接在线观看。

7. 哪里有韩顺平老师的坦克大战素材及源码。

http://download.csdn.net/detail/wangsenling/3650348

8. 求韩顺平细说servle中用户管理系统源码,谢谢

云盘链接已私信发送给你了,下载后请按照步骤进行使用!如果还有哪位朋友想要,请点“赞”此条回答以后,在下面的评论里留下您的联系方式!学无止境,希望回答能给你带来帮助,如果满意请采纳,不满意的话请继续追问!

9. 韩顺平javaee三大框架的视频和js的视频和讲课的涉及到的源码,注意是韩顺平,希望能给一个连接。

马士兵老师的视频也不错,如果楼主需要可以密我

热点内容
xp系统开机密码怎么设置 发布:2024-05-02 06:49:48 浏览:759
柱加密区公式 发布:2024-05-02 06:40:19 浏览:4
java字节转换 发布:2024-05-02 06:40:11 浏览:687
用c语言做的程序 发布:2024-05-02 06:26:10 浏览:325
解压用流量 发布:2024-05-02 06:21:46 浏览:316
云购源码系统 发布:2024-05-02 06:12:52 浏览:105
电脑如何进行安卓升级 发布:2024-05-02 06:10:08 浏览:37
元龙第5集免费看完整版缓存 发布:2024-05-02 06:03:47 浏览:668
脚本宣传片 发布:2024-05-02 05:56:26 浏览:570
有线投屏安卓手机如何设置 发布:2024-05-02 05:43:26 浏览:896