2013年3月29日
摘要:
http://themeforest.net/category/site-templates/admin-templates 这个上面全是后台模版(国外的)
阅读全文
posted @ 2013-03-29 14:56
ijoanne
阅读(224)
推荐(0)
摘要:
Redis 大名如雷贯耳,看官若不了解请百度~phpredis是php的一个扩展,效率应该不会差下载地址如下:https://github.com/owlient/phpredis(支持redis 2.0.4)本文纯手工打造,转载请标明出处http://blog.sina.com.cn/s/blog_4b75b0020100neea.htmlRedis::__construct构造函数$redis = new Redis();connect, open链接redis服务参数host: string,服务地址port: int,端口号timeout: float,链接时长 (可选, 默认为 0
阅读全文
posted @ 2013-03-29 14:32
ijoanne
阅读(291)
推荐(0)
2013年3月28日
摘要:
颜色插件安装方法:如果是Eclipse 3.6 (Helios)版本,可以打开 Help -> Eclipse Marketplace 搜索Eclipse Color Theme来进行安装。Eclipse 3.5 (Galileo)版本可以通过Help -> Install New Software,单击 Add Site 来加入Eclipse Color Theme的安装地址的方式进行安装。(http://eclipse-color-theme.github.com/update/)窗口--首选项--外观
阅读全文
posted @ 2013-03-28 22:57
ijoanne
阅读(171)
推荐(0)
2013年3月25日
摘要:
php100下载 Subversion 和 TortoiseSVN 安装 cmd 执行 svnserve.exe -d -r D:\svn 如果不显示错误则安装成功D:盘符下右键 出现TortoiseSVN 点击create repository here 创建版本库 server_svn\conf文件下进行配置# anon-access = read # auth-access = write匿名用户是否可以读取svn内容 如果可以的话 去除前面#号 前面不要有空格 # password-db = passwd 密码数据库是否指定在passwd文件夹 (去...
阅读全文
posted @ 2013-03-25 23:31
ijoanne
阅读(259)
推荐(0)
2013年3月23日
摘要:
将表单串行化(或序列化)成一个查询字符串。这个方法将返回以下格式的字符串:name1=value1&name2=value2。可链接(Chainable):不能, 这个方法返回一个字符串。实例:varqueryString=$('#myFormId').formSerialize();//现在可以使用$.get、$.post、$.ajax等来提交数据$.post('myscript.php',queryString);fieldSerialize()将表单的字段元素串行化(或序列化)成一个查询字符串。当只有部分表单字段需要进行串行化(或序列化)时,这个就
阅读全文
posted @ 2013-03-23 14:36
ijoanne
阅读(836)
推荐(0)
2013年3月22日
摘要:
$this 是一个表格对象如果表单是被选中 则抄找form表单下的 type=checkbox 并全部添加 checked$(this).parents('form').find('input:checkbox').attr('checked',$(this).is(':checked'));
阅读全文
posted @ 2013-03-22 00:54
ijoanne
阅读(187)
推荐(0)
2013年3月21日
摘要:
change_status: function(reId,status,field) { $.dialog.tips(common_admin_jsmsg05); //loading 图片 $("#"+field+"_"+reId).attr("src",BASE_URL+"statics/backyard/images/loadingsmall.gif"); $.ajaxSetup({ cache: false });reId: reId, status:status,field:field 枚举型 将数据传送到
阅读全文
posted @ 2013-03-21 21:40
ijoanne
阅读(310)
推荐(0)
2013年3月20日
摘要:
效果图1 提交表单使用 validate对表格进行验证2 ajaxsumbit提交表单 artdialog 弹出提示提交成功(弹出框消失后提示并刷新页面);validate.js$(function(){ $("#click").click(function(e) { $.dialog.tips('提交成功!', 1.5); var dialog= $.dialog({ title:"nihao",//对话框标题间 content:document.getElementById('mms_form'),//对话框内容 可以
阅读全文
posted @ 2013-03-20 19:25
ijoanne
阅读(1067)
推荐(0)
摘要:
formbalidator插件支持4种提示模式:固定提示层(FixTip): theme:'Default' 默认直接显示提示 其他模板获取焦点后显示提示 自动构建提示层(AutoTip)、 单个提示层跟随(SingleTip)、 弹出提示内容(AlertTip)。 我们通常所使用的AutoTip 下面的案例也是通过中方式提示。案例常用方式 demo6http://www.4ucode.com/Study/Topic/507766http://www.cnblogs.com/wzmaodong/
阅读全文
posted @ 2013-03-20 17:05
ijoanne
阅读(155)
推荐(0)
2013年3月19日
摘要:
<!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=utf-
阅读全文
posted @ 2013-03-19 18:42
ijoanne
阅读(370)
推荐(0)