摘要:
?phprequire_once 'showErrMsg.php';$_action = (isset($_REQUEST['action'])?$_REQUEST['action']:"");if($_action!=null&&$_action!=''){if(function_exists($_action)){eval("$_action();");}else{die(showErrMsg ( "br当前php文件中不存在方法[b".$_action."()/b]。"));}}??phpfunction showErrMsg($strMsg){return "fon 阅读全文
摘要:
拖放效果,也叫拖拽、拖动,学名Drag-and-drop ,是最常见的js特效之一。如果忽略很多细节,实现起来很简单,但往往细节才是难点所在。这个程序的原型是在做图片切割效果的时候做出来的,那时参考了好几个同类的效果,跟muxrwc和BlueDestiny学习了不少东西。虽然每次整理都觉得很好了,不过每隔一段时间又会发现得某个地方可以改善,某个地方有错误,某些需求需要实现,就像自己学习的知识那样。这里考虑到有的人可能只需要简单的拖放,所以有一个简化版的拖放SimpleDrag,方便学习。效果预览在maxthon下如果开启广告过滤的话很可能会被过滤掉(不知有什么方法可以避免)。 拖放状态:结束拖 阅读全文
摘要:
JS代码小集合事件源对象 event.srcElement.tagName event.srcElement.type 捕获释放 event.srcElement.setCapture(); event.srcElement.releaseCapture(); 事件按键 event.keyCode event.shiftKey event.altKey event.ctrlKey 事件返回值 event.returnValue 鼠标位置 event.x event.y 窗体活动元素 document.activeElement 绑定事件 document.captureEvents(Event 阅读全文
摘要:
using System.Text;namespace Comm{ public static class Chs2Spell { #region 编码定义,不支持全角字符 private static int[] pyvalue = new int[] { -20319, -20317, -20304, -20295, -20292, -20283, -20265, -20257, -20242, -20230, -20051, -20036, -20032, -20026, -20002, -19990, -19986, -19982, -19976, -19805, -19784, -1 阅读全文
摘要:
Backup Database NorthwindCSTo disk='G:\Backup\NorthwindCS_Full_20070908.bak'--差异备份Backup Database NorthwindCSTo disk='G:\Backup\NorthwindCS_Diff_20070908.bak'With Differential--日志备份,默认截断日志Backup Log NorthwindCSTo disk='G:\Backup\NorthwindCS_Log_20070908.bak'--日志备份,不截断日志Backup Log NorthwindCSTo disk= 阅读全文
摘要:
C# 取得域名及目录地址2007-12-17 13:06using System;using System.Collections.Generic;using System.Text;using System.Web;namespace SinvanCMS.Common{ /// summary /// 全局类,当前域名,物理路径 /// /summary public class Application { /// summary /// 获得url路径, http://www.my400800.cn/400ZiFeiBiaoZhun.aspx 的app部分如:http://lo 阅读全文