摘要:
今天我做了一个link,点击连接,js模拟表单submit,结果一直提示一个错误:f[s] is not a function。后经过调试发现问题,表单提交代码如下:1 2 没收到激活邮件,重新发送因为真实的提交按钮的name和id都是submit,导致无法提交的问题出现,解决方案就是将input的name和id全部换成其他内容。原因不详~~~ 阅读全文
摘要:
作者:zhoulf出处:http://www.cnblogs.com/zhoulf/安装说明系统环境:CentOS-6.3 安装方式:yum install (源码安装容易产生版本兼容的问题)安装软件:系统自动下载SVN软件检查已安装版本 #检查是否安装了低版本的SVN [root@localhost /]# rpm -qa subversion#卸载旧版本SVN [root@localhost modules]# yum remove subversion安装SVN[root@localhost modules]# yum install httpd httpd-devel subver.. 阅读全文
摘要:
centos下编译安装curl拓展 阅读全文
摘要:
多行文本居中 阅读全文
摘要:
yii自动登陆过程 阅读全文
摘要:
webservice连接超时处理 阅读全文
摘要:
YII中ajax分页有多种实现方法,比较传统的就是在view中写JS来实现,大概的就是这样:在view中js大概逻辑是这样:1$('#listview .yiiPager a').live('click',function(){2$.ajax({3url:$(this).attr('href'),4success:function(html){5$('#listview').html(html);6}7});8return false;//阻止a标签9});然后在controller中判断ajax请求,再使用renderParti 阅读全文
摘要:
Yii 框架里数据库操作详解-[增加、查询、更新、删除的方法 'AR模式']博客分类:framework======================================= public function getMinLimit () { $sql = "..."; $result = yii::app()->db->createCommand($sql); $query = $result->queryAll(); return array ( $query [0] ['max'], ); }$connectio 阅读全文