05 2012 档案
摘要:1、字符串拼接var str = 'aaa';setTimeout('alert(' + str + ')', 1000);2、匿名函数setTimeout(function() {someFun(param1)}, 100);3、闭包方式function someFun (obj) { return function() {alert($(obj).length);}}setTimeout(someFun(this), 100);//orvar test = someFun(this);setTimeout(test, 100);4、函数内部使
阅读全文
摘要:group_concat对长度是有限制的,mysql默认的是1024字节。查看group_concat_max_len值:SELECT @@global.group_concat_max_len设置group_concat_max_len值:1、直接写语句 SET GLOBAL group_concat_max_len=10242、改Mysql配置文件 在my.cnf中的[mysqld]加上以下内容 group_concat_max_len = 10240 ,重起一下mysql就行了
阅读全文