需要先enable mbstring 扩展库在 php.ini里将; extension=php_mbstring.dll 前面的 ; 去掉mb_convert_encoding 可以指定多种输入编码,它会根据内容自动识别,但是执行效率比iconv差太多;一般情况下用 iconv,只有当遇到无法确定...
分类:
其他好文 时间:
2015-06-29 16:43:24
阅读次数:
275
回调函数的定义为:传递一个函数A到另一个函数B中,由B调用A,我们就说函数A叫做回调函数。如果没有名称,就叫做匿名回调函数。 例1:Javascript中的回调函数function invoke_and_add(a,b){ return a()+b();}function one(){ retu.....
分类:
其他好文 时间:
2015-06-29 16:12:07
阅读次数:
104
//倒计时,分为时间格式和数字格式倒计时。带有具体格式/*使用示例$("#countDown").on("click",function(){ MY.countDown.getTime({ seconds:5,//倒计时数字 flag:"#countDown",//...
分类:
Web程序 时间:
2015-06-29 14:47:05
阅读次数:
188
文章由来:jQuery源码学习时的总结在JS中,一般的面向对象的写法如下:function Cao(){}//定义一个构造函数Cao.prototype.init = function(){}//原型上添加初始化方法Cao.prototype.other = function(){}//可执行的其他...
分类:
编程语言 时间:
2015-06-29 14:47:05
阅读次数:
290
$(document).ready(function() { var eventFired = function(type) { var n = $('#demo_info')[0]; n.innerHTML += '' + type + ' 事件- ' + new...
分类:
其他好文 时间:
2015-06-29 14:38:53
阅读次数:
128
$(document).ready(function() { $('#example').dataTable(); $('#example tbody').on('click', 'tr', function () { var name = $('td', this).e...
分类:
其他好文 时间:
2015-06-29 14:37:03
阅读次数:
100
var iframe = document.createElement("iframe");iframe.src = "http://www.planabc.net";if (iframe.attachEvent){ iframe.attachEvent("onload", function(...
分类:
其他好文 时间:
2015-06-29 13:13:15
阅读次数:
100
$('.income-chart .left-nav>li').click(function(){ var Index = $(this).index(); $(this).addClass('active').siblings().removeClass('active'); $...
分类:
其他好文 时间:
2015-06-29 13:08:10
阅读次数:
155
先上代码:apply()方法示例/*定义一个人类*/ function Person(name,age) { this.name=name; this.age=age; } /*定义一个学生类*/ function Student(name,age,grade) { ...
分类:
移动开发 时间:
2015-06-29 11:41:03
阅读次数:
134
function GetIP(){ if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown")) $ip = getenv("HTTP_CLIENT_IP"); else if (ge...
分类:
其他好文 时间:
2015-06-29 11:32:58
阅读次数:
84