上一页 1 ··· 7 8 9 10 11 12 下一页
摘要: ckeditor配置大全,config.jsCKEditor 的时候,看到的匹配 class 的正则表达式。(?:^| )editor(?:$| )看了半天没明白,后来打开 RegexTester 试了一下,原来(?:^| )是“字符串开始或空格开头”的意思,后面的(?:$| )同理。sigh,以为自己正则表达式也看过一些了,但看了 perl 和 js 一些库之后,觉得自己的正则表达式水平怎么也忒... 阅读全文
posted @ 2012-05-28 12:52 holyes 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 隐藏index.php一、codeignitercodeigniter和许多php框架一样,有个单一入口index.php,从url上看,显得很不友好。通过apache的rewirte,是可以隐藏掉的,实现伪url。 打开codeigniter下system\application\config中的config.php 找到$config['index_page'] = "index.php"; ... 阅读全文
posted @ 2012-05-28 12:52 holyes 阅读(349) 评论(0) 推荐(0) 编辑
摘要: <?phpclass DB_BACKUP { private $dbname ; #要进行备份数据库名称 private $isGz=true ; # 是否对数据进行压缩 private $mode = "w"; #写入模式 private $dir ; #数据存放目录 private $charset="gb2312"; #要跟数据库的存储编码一样 #构造函数 function __constr... 阅读全文
posted @ 2012-05-28 12:52 holyes 阅读(190) 评论(0) 推荐(0) 编辑
摘要: <?phpinclude 'config.php';class Model{ //用户名 protected $user; //密码 protected $pwd; //主机 protected $host; //库名,是一个数组 protected $dbName=array(); //字符集 protected $charset='utf8'; //连接资源是一个数组 protected $_... 阅读全文
posted @ 2012-05-28 12:52 holyes 阅读(201) 评论(0) 推荐(0) 编辑
摘要: var myData = { records : [ { name : "Record 0", column1 : "0", column2 : "0" }, { name : "Record 1", column1 : "1", column2 : "1" }, { name : "Record 2", column1 : "2", column2 : "2" }, { name : "Rec... 阅读全文
posted @ 2012-05-28 12:19 holyes 阅读(625) 评论(0) 推荐(0) 编辑
摘要: 闭包(closure)是Javascript语言的一个难点,也是它的特色,很多高级应用都要依靠闭包实现。下面就是我的学习笔记,对于Javascript初学者应该是很有用的。一、变量的作用域要理解闭包,首先必须理解Javascript特殊的变量作用域。变量的作用域无非就是两种:全局变量和局部变量。Javascript语言的特殊之处,就在于函数内部可以直接读取全局变量。 var n=999; ... 阅读全文
posted @ 2012-05-28 12:19 holyes 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1.下载与安装LIBXML2和ICONVLibxml2是一个C语言的XML程序库,可以简单方便的提供对XML文档的各种操作,并且支持XPATH查询,以及部分的支持XSLT转换等功能。Libxml2的下载地址是http://xmlsoft.org/,完全版的库是开源的,并且带有例子程序和说明文档。最好将这个库先下载下来,因为这样可以查看其中的文档和例子。windows版本的的下载地址是http://... 阅读全文
posted @ 2012-05-26 21:41 holyes 阅读(497) 评论(0) 推荐(1) 编辑
摘要: var textField3 = new Ext.form.TextField({ fieldLabel : '描述', readOnly :true, disabled:true,//禁用后getForm.values()没有值。name : 'column2'});===========Ext.DDGridPanel is not a constructor这里是js引入顺序或者js没有引入... 阅读全文
posted @ 2012-05-26 21:37 holyes 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 据目前所知:Store至少分为两类,一个是SimpleStore,另一个是JsonStore。 1,用在gridPanel中常使用SimpleStore Js代码 varstore_stat=newExt.data.SimpleStore({ fields:[ {name:'date',mapping:'date'} ,{name:'model',mapping:'model'} ,{... 阅读全文
posted @ 2012-05-25 17:57 holyes 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 接口添加页面JS验证<script> //验证接口信息 //验证接口是否是汉字 function checkname(name){ var preg=/[^\u4e00-\u9fa5]/g if(name.value == ''){ document.getElementById('name').innerHTML="<font color='red'>*请填写接口中文名称</font>"; }else if(name.value.match(preg)){ document.getElem 阅读全文
posted @ 2012-05-25 15:26 holyes 阅读(361) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 下一页