上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 48 下一页
摘要: 样式:更多详细信息,请查看官网http://www.mysuc.com/test/My97DatePicker/ 阅读全文
posted @ 2011-09-01 17:56 春哥也编程 阅读(379) 评论(0) 推荐(0)
摘要: <html> <head> <style type="text/css"> <!-- div.test { width:400px; margin:5px auto; border:1px solid #ccc; } div.test strong { font-size:16px; background:#fff; border-bottom:1px solid #aaa; ... 阅读全文
posted @ 2011-09-01 13:31 春哥也编程 阅读(8331) 评论(0) 推荐(0)
摘要: 框架页有Frame、Iframe、Frameset 3个标记,初学者容易将三者混淆,下面分别讲解三者的区别。10.4.1 Frameset与Frame的区别首先讲解Frameset与Frame之间的区别。<Frameset></Frameset>用来划分框架,每一个框架由<Frame></Frame>标记。<Frame></Frame>必须在<Frameset></Frameset>之内使用,代码如下:<FRAMESET border=1 frameSpacing=1 borderColor= 阅读全文
posted @ 2011-09-01 10:23 春哥也编程 阅读(606) 评论(0) 推荐(0)
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb23 阅读全文
posted @ 2011-08-25 20:01 春哥也编程 阅读(851) 评论(0) 推荐(0)
摘要: <style type="text/css"> #shadow, #text { font: 12px/16px Arial; width: 200px; overflow: hidden; height: 16px; } #shadow { position: absolute; border-width: 0px; padding: 0px; visibility: hidden; } #text { resize: none; } </style> <script type="text/javascript"> 阅读全文
posted @ 2011-08-25 19:52 春哥也编程 阅读(2269) 评论(0) 推荐(1)
摘要: 新增页面控件 这个是用了比较少的DOM操作,也可以采取完全用DOM来实现的具体DOM的属性见:http://www.w3school.com.cn/htmldom/index.asp以上实例的代码<script language="javascript"> var count= 0 ; //全局变量统计总数 var maxfile = 5;//限制控件个数 //增加元素 function addmx() { //if(count >= maxfile) return;//限制最多显示多少个行 ... 阅读全文
posted @ 2011-08-25 19:39 春哥也编程 阅读(319) 评论(0) 推荐(0)
摘要: header("Content-type:application/octet-stream");header("Accept-Ranges:bytes");header("Content-Type:application/force-download");header("Content-Disposition:inline;filename=".$filename);header("Accept-Length:".filesize($File));@readfile($File);//读取文件到 阅读全文
posted @ 2011-08-23 16:59 春哥也编程 阅读(3135) 评论(4) 推荐(2)
摘要: 这个是对单文件上传的补充,只要是让大家知道有这么回事没有对安全等考虑的很全面,请大家修正,谢谢单文件index.php<form atcion="action.php" method="post" enctype="multipart/form-data"> <input type="file" name="fileField1" /></form>当需要上传二进制文件时,记得 enctype="multipart/form-data"&l 阅读全文
posted @ 2011-08-23 16:50 春哥也编程 阅读(1870) 评论(0) 推荐(0)
摘要: 通过 PHP,可以把文件上传到服务器。创建一个文件上传表单允许用户从表单上传文件是非常有用的。请看下面这个供上传文件的 HTML 表单:<html><body><form action="upload_file.php" method="post"enctype="multipart/form-data"><label for="file">Filename:</label><input type="file" name=&quo 阅读全文
posted @ 2011-08-22 11:16 春哥也编程 阅读(1210) 评论(0) 推荐(0)
摘要: -- 按字符方式排序 select * from perexl order by perexl.xx -- 按字符对应的数字方式排序 select * from perexl order by to_number(perexl.xx) -- 按拼音排序 (系统默认) select * from perexl order by nlssort(danwei,'NLS_SORT=SCHINESE_PINYIN_M'); -- 按部首排序 select * from perexl order by nlssort(danwei,'NLS_SORT=SCHINESE_STROK 阅读全文
posted @ 2011-08-20 10:25 春哥也编程 阅读(764) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 48 下一页