采用行写方式的聊天程序(之三)

2016-01-29 14:17 10 1 收藏

采用行写方式的聊天程序(之三),采用行写方式的聊天程序(之三)

【 tulaoshi.com - PHP 】

  ltsayno.php
该程序为系统的核心,处理所关联的所有函数信息

<?session_start();?
<html
<head
<title发言区</title
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"
<style
body{background:59ACFF;color:black}
body{font-size:9pt;line-height:160%}
table{font-size:10.5pt}
input{font-size:9pt}
A{color:black;text-decoration:none}
A:Hover{text-decoration:underline}
</style
<script Language=JavaScript

//大家的信息
function dj(){
  document.forms[0].towho.options[0].value="大家";
  document.forms[0].towho.options[0].text="大家";
  document.forms[0].saystemp.focus();
}

//动作,把该动作的信息添加到发言板中
function rc(list){
  if (list!="0"){
     document.forms[0].saystemp.value=list;
     document.forms[0].saystemp.focus();
  }
}


function backsays() {
  document.forms[0].saystemp.value=document.forms[0].oldsays.value;
  document.forms[0].saystemp.focus();
  return true;
}


function checksays(){
  if(document.fyq.saystemp.value==""){
    alert("请输入发言。");
    document.fyq.saystemp.focus();
    return false;
   }
  if(document.fyq.saystemp.value==document.fyq.oldsays.value){
     alert("内容不可重复。");
     document.fyq.saystemp.focus();
     document.fyq.saystemp.select();
     return false;
    }
    document.fyq.oldsays.value=document.fyq.saystemp.value;
    document.fyq.saystemp.value="";
    document.fyq.saystemp.focus();
    document.fyq.send.disabled=1;
    setTimeout("document.fyq.send.disabled=0",30);
    return true;
}

function cls(){
  parent.f1.location.href="about:blank";
  setTimeout("write(1)",500);
}

function write(cls){
  var ffsize;   
  var lheight;  
  if (cls==1){
     ffsize=parent.f2.document.fyq.fontsize.value;
     lheight=parent.f2.document.fyq.lineheight.value;
   }else{
     ffsize='10.5';
     lheight='145';
   }
  parent.f1.document.open();
  parent.f1.document.writeln("<html<head<title对话区</title");
  parent.f1.document.writeln("<meta http-equiv=Content-Type content="text/html; charset=gb2312"");
  parent.f1.document.writeln("<style type=text/css.t{color:FF00FF;font-size:9pt;}");
  parent.f1.document.writeln("body{font-family:"宋体";font-size:"+ffsize+"pt;line-height:" + lheight + "%;}A{text-decoration:none}A:Hover{text-decoration:underline}A:visited{color:blue}</style</head");
  parent.f1.document.writeln("<Script Language="JavaScript1.1"");
  parent.f1.document.writeln("var autoScrollOn=1;");
  parent.f1.document.writeln("var scrollOnFunction;var scrollOffFunction;");
  parent.f1.document.writeln("function scrollit()");
  parent.f1.document.writeln("{if(!parent.f2.document.fyq.as.checked)");
parent.f1.d

来源:http://www.tulaoshi.com/n/20160129/1492958.html

延伸阅读
标签: 电脑入门
一、一键打开运行 朋友们打开“运行”窗口,都是通过“开始”菜单中的命令来完成的。其实我们可以为运行创建一个快捷方式,一键打开运行窗口。 在记事本中,在里面输入“(new ActiveXObject("Shell.Application")).FileRun()”,注意输入时不包括外面的引号,注意大小写。将文件保存为JS格式。然后右击保存的文件,在...
3 定位路径与路径步 XPath的主要构件是表达式,其中,最重要的表达式是定位路径(Location Path)表达式,这也是它为什么命名为XPath的原因。定位路径表达式是这种类型的表达式:/pub/book/author粗看起来,定位路径表达式很像文件系统中的路径。定位路径的思想和文件系统中的路径却是很相似,当然,更复杂一些。定位路径有两种,分别是相对的定...
标签: Delphi
  象C语言一样,用Delphi也能写出只有几十K、十几K、甚至只有几K的小程序,本文将以一个能将Win95桌面藏起来的仅有38K的小程序为例教会读者这一技巧,同时本文还将涉及Win95 TrayIcon的显示。 本程序能写得很小的诀窍是:根本没有用任何的 Form 。也就是说,源程序只有一个 Desktop.dpr 文件,程序完全用标准的 WINAPI 写成,由于用...
标签: ASP
  构造代理库 .NET 平台上的应用程序可以使用代理库来调用Web服务上的方法,这样使用Web服务就非常容易。生成代理库的第一步是从SDL中生成一个Web服务的代理类。.NET SDK提供了一个叫做WebServiceUtil.exe的工具,它能够帮助我们生成一个代理类。要生成Web服务的代理类,首先进入命令行环境,然后转到将要开发客户应用程序的那个目录...
我写了一个汉字行编辑程序,请各位多多指教,找出本程序的不足,以提高本程序的功能,! 程序如下:  #include "stdio.h" #include "stdlib.h" #include "string.h" #include "conio.h" #define len 4 #define LINESIZE 80   /*每行长度为80个字符*/ strUCt TEXT {  struct TEXT...

经验教程

956

收藏

68
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部