- 浏览: 189506 次
- 性别:
- 来自: 北京
-
最新评论
-
heping45:
有待进步,不知所云
WEB流程图(jquery实现) -
zhoupuyue:
html有一个小错误:<script> $(fu ...
漂亮的Jquery的日期控件(精减) -
dcdc723:
happy175 写道大家是怎么用的啊,我的怎么没有反应?这是 ...
漂亮的Jquery的日期控件(精减) -
happy175:
大家是怎么用的啊,我的怎么没有反应?这是我的代码:
<! ...
漂亮的Jquery的日期控件(精减) -
nianshi:
加上Html文件多好啊
漂亮的Jquery的日期控件(精减)
文章列表
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Jquery添加文本框并取得值 </title>
<script type="text/javascript" src="jquery.js"> </script>
<script type="text/javascript">
func ...
第一级:神人,天资过人而又是技术狂热者同时还拥有过人的商业头脑,高瞻远瞩,技术过人,大器也。如丁磊,求伯君。
第二级:高人,有天赋,技术过人但没有过人的商业头脑,通常此类人不是顶尖黑客就是技术总监 ...
用于注册或登陆的对话框
<!doctype html>
<html lang="en">
<head>
<title>jQuery UI Dialog - Modal form</title>
<link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javas ...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css">
<link rel=&quo ...
//C# 代码
int year = DateTime.Now.Year;
int month = DateTime.Now.Month;
DateTime firstDayOfThisMonth = new DateTime(year, month, 1);
DateTime lastDayOfThisMonth = new DateTime(year, month, DateTime.DaysInMonth(year, month));
//SQL代码
DECLARE @NOW DATETIME
DECLARE @FistDayOfThisMonth DATETIM ...
/// <summary>
/// 验证位身份证
/// </summary>
/// <param name="Id">身份证号码</param>
/// <returns>是否真实身份证</returns>
//返回true符合验证的标准,反之则非法;
private bool CheckIDCard(string Id)
{
int intLen = Id.Leng ...
这个名称空间:System.Text.RegularExpressions。
该名称空间包括8个类,1个枚举,1个委托。他们分别是:
Capture: 包含一次匹配的结果;
CaptureCollection: Capture的序列;
Group: 一次组记录的结果,由Capture继承而来;
GroupCollection:表示捕获组的集合
Match: 一次表达式的匹配结果,由Group继承而来;
MatchCollection: Match的一个序列; MatchEvaluator: 执行替换操作时使用的委托;
Regex:编译后的表达式的实例。
Rege ...
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Drawing.Imaging;
using System.Drawing;
...
using System;
using System.Net;
using System.Text;
using System.Text.RegularExpressions;
namespace web
{
public partial class dang : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
WebClient wc = new WebClient();
...
1、首先建立一个类。
using System;
using System.Windows.Forms;
namespace lei
{
public class rmb : MarshalByRefObject
{
public rmb()
{
MessageBox.Show("成功建立通道", "消息提示");
}
public string cli()
{
return & ...
方法名 __call($funname,$arr_value)
调用一些不存在的对象方法的异常处理,使程序继续正常运行。
class My{
function __call($n,$v){
echo "错误的方法名".$n;
echo "错误的参数".Print_r($v); //因为参数会有多个所要
用数组的方式保存,打印
的时候也要就用print_r 输出
}
}
方法名 __clone()
关键字 clone
通过克隆的方式我们可以在内存中生成两个一样的对象或升 ...
<?php
interface myusbkou
{
function type();//类型
function action();//执行的操作
}
class zip implements myusbkou
{ //继承接口
function type(){
echo "USB的2.0接口";
}
function action(){
echo "--->需要USB 2.0驱动";
}
}
class mp3 implements myusbko ...
运算符 :instanceof
PHP 一个类型运算符。instanceof 用来测定一个给定的对象是否来自指定的对象类。
class A { }
class B { }
$thing = new A;
if ($thing instanceof A) {
echo 'A';
}
if ($thing instanceof B) {
echo 'B';
}
多态的介绍与优势
多态性是继抽象和继承后,面向对象语言的第三个特征。从字面上理解,多态的意思是“多种形态”,简单来说,多态是具有表现多种形态的能力的特征,在OO中是指“ ...
1、接口的介绍与创建
关键字 :interface
2、接口的引用与规范
关键字 :implements
接口:一种成员属性全部为抽象的特殊抽象类,在程序中同为规范的作用
1、类中全部为抽象方法
2、抽象方法前不用加abstract
3、接口抽象方法属性为public
4、成员属性必须为常量
抽象:
1、类中至少有一个抽象方法
2、抽象方法前需加abstract
共同点:
1、本身都不能被实例化,必须被继承或者引用
2、继承或者引用后,需要把所有抽象方法重载方可使用
接口有自己的创建关键字:interface ...
ajax代码
function classnameadd(){
$.ajax({
type:"post",
url:"test.php",
data:{bigclass:$("#bigclass").val(),moth:$("#addto").val()}, //addto为隐藏域;
beforeSend:function(){$("#err").html("数据查询中 ...