2015/08/11 PHP/Python/Java No Comments PHP人民币大小写转换类(MoneyConvertor_CLS) 人民币大小写转换类 PHP:/** * MoneyConvertor Library For PHP * 人民币大小写转换类 * --------------------------------------------------- * @site https://www.fity.cn/post/534/ * @describe 对人民币进行大小写转换的类,该方法可以完美转换任何形式小写货币格式为人民币大写 */ &n... 继续阅读 »
2015/08/04 WEB前端 No Comments jQuery error()替换载入错误的图片 jQuery error()替换载入错误的图片error()函数当元素遇到错误(没有正确载入)时,发生 error 事件。error() 方法触发 error 事件,或规定当发生 error 事件时运行的函数。提示:该方法是 bind('error', handler) 的简写方式。示例:如果图片不存在,则用预定义的图片取代它:$('img').error(function(){ $(this).attr('src', "static/no_pic.gif"); }); 继续阅读 »
2015/08/02 WEB前端 No Comments jQuery移除class对应绑定的事件 jQuery移除class对应的事件在使用jQuery进行class更改后发现class对应的点击事件并没有发生改变,究其原因需要在类改变后用off()将之前绑定在类上的事件取消,如果需要事件则重新绑定。off()函数用于移除元素上绑定的一个或多个事件的事件处理函数。主要用于解除由on()函数绑定的事件处理函数。例如:$("#butclass").removeClass("openbuy"); $('#butclass').off(); //移除绑定的事件 $("#butclass").addClass("disabled"); 继续阅读 »
2015/08/02 WEB前端 No Comments js返回上一页并刷新页面 js返回上一页并刷新页面<script type="text/javascript"> javascript:history.go(-1); self.location=document.referrer; </script> 继续阅读 »
2015/07/26 WEB前端 No Comments jquery实时监听input输入框值变化 jquery实时监听某输入框值的变化//实时监听password输入框值并赋值到password2输入框中$('#password').bind('input propertychange', function() { var pw= $('#baseReg .js_pass').val(); $('#baseReg .js_pass2').val(pw); }); 继续阅读 »
2015/07/26 WEB前端 No Comments Discuz $()与JQuery $()冲突解决方法 问题描述:默认情况下,Discuz引入jQuery代码后直接使用 $(),运行后会报错。原因分析:Discuz默认使用了$()作为对象选取函数,刚好与jQuery默认的$()函数重合造成冲突。Discuz $()对象选取函数代码位于static/js/common.js第8-10行:function $(id) { return !id ? null : document.getElementById(id); } 至此,你应该了解到为么Discuz引入JQuery后为什么会出现部分功能失效或报错的问题。解决方法这里列出2种:方法一:在common... 继续阅读 »
2015/07/09 WEB前端 No Comments js/Jquery重新设置图片的尺寸 ##js/Jquery重新设置图片的宽度高度 **设置多图:** ```javascript //当文档加载完成之后重新批量设置指定图片的高度等于宽度(这里主要用于适应某些设备) window.onload = function(){ var v = document.getElementsByClassName(“lm_img”); var k; for (k = 0; k < v.length; k++) { v[k].height = v[k].width; } }; PS:getElementsByClassName返回文档中所有指定类名的元素集合 ``` **设置单图:** ```javascript window... 继续阅读 »
2015/06/15 Nginx/Apache/Tomcat No Comments TP3.2访问静态资源提示无法加载模块nginx **说明信息:** Thinkphp版本:3.2 URL_MODEL配置2 **解决方法:** > rewrite ^/Public/(.)$ /Public/$1 break; //加在下面这行规则上面,假设静态资源位于根目录下Public目录下 rewrite ^(.)$ /index.php?s=$1 last; 继续阅读 »
2015/06/07 WEB前端 No Comments Jquery replace ##### Jquery字符替换replace 示例:将下列html代码中图片SRC地址中的www.www.fity.cn域名修改为www.fity.cn: ```html ``` JQuery 替换方法: ```javascript $("img").attr("src").replace("www.www.fity.cn", "www.fity.cn"); //将www.www.fity.cn替换为www.fity.cn ``` 继续阅读 »
2015/06/07 Discuz/CMS No Comments Discuz在电脑上访问手机版和触屏版方法 Discuz在电脑上访问并切换手机版和触屏版方法1、在浏览器上安装 User Agent Switcher 插件,然后切换用户代理模式2、修改discuz程序源码中static\js\mobile\common.js文件,注释下面的代码:/*var supporttouch = "ontouchend" in document; !supporttouch && (window.location.href = 'forum.php?mobile=1');*/ 继续阅读 »
2015/06/07 PHP/Python/Java No Comments PHP在已有日期时间上加一天 PHP在原有日期时间上加上一天:$date = date('Y-m-d',strtotime('+1 d',strtotime('2015-06-08'))); echo $date; //输出2015-06-09 $d = "2015-06-08 10:19:00"; $date = date("Y-m-d",strtotime("$d +1 day")); echo&... 继续阅读 »
2015/06/03 PHP/Python/Java No Comments php 毫秒 php获取毫秒数PHP microtime()返回当前 Unix 时间戳和微秒数。php本身没有提供返回毫秒数的函数,但提供了一个microtime()函数,该函数返回秒数和小数表示的毫秒数两个元素,借助此函数,可以很容易定义一个返回毫秒数的函数:function getMsec() { list($us, $s) = explode(' ', microtime()); return (float)sprintf('%.0f', (floatval($us) +&nb... 继续阅读 »
2015/05/27 Discuz/CMS No Comments discuz 您的服务器无法访问应用中心,这将会导致应用无法安装 错误信息:您的服务器无法访问应用中心,这将会导致应用无法安装。请联系您的服务商或者网站技术人员,确保您的服务器能够正常访问 addon.discuz.com 或 addon1.discuz.com错误截图:电信网络下ping addon.discuz.com和addon1.discuz.com分别得到的ip是:C:\Users\Administrator>ping addon.discuz.com正在 Ping addon.discuz.com [101.226.129.174] 具有 32 字来自 101.226.129.174 的回复: 字节=32 时间=21ms TTL=54来自 101.226.129.174 的回复: 字节=32 时间=21ms TTL=54... 继续阅读 »
2015/05/15 PHP/Python/Java No Comments ThinkPHP5.1 ISNULL查询空字段数据 **ThinkPHP ISNULL , ThinkPHP查询空或非空字段数据** ```sql ThinkPHP3.2 $where['age'] = array('exp',' is NULL'); $where['age'] = array('exp',' is not NULL'); ThinkPHP5.1 whereNull('level') whereNotNull('level') ``` **MySQL查找空字段或不为空的字段** MySQL查询空字段数据: ```sql select * from table where id = ''; select * from table where isnull(age); ``` **... 继续阅读 »
2015/05/15 数据库 No Comments MySQL查找空字段或不为空的字段 ###### MySQL查找空字段或不为空的字段 MySQL查询空字段数据: select * from table where id = ''; select * from table where isnull(age); MySQL查询不为空字段的数据(非空数据): select * from table where age ''; select * from table where age != ''; 继续阅读 »