摘要: delete from topline WHERE id in(select id from (SELECT id from topline WHERE newsNumber ='55' ) as t) 阅读全文
posted @ 2017-01-25 09:17 G善源 阅读(150) 评论(0) 推荐(0) 编辑
摘要: $('.newsletterForm').on('submit', function(evt){ evt.preventDefault(); var action = $(this).attr('action'); var $container = $(this).closest('.formContainer'); $.ajax({ url: action, type: 'POST', suc... 阅读全文
posted @ 2016-12-22 12:13 G善源 阅读(111) 评论(0) 推荐(0) 编辑
摘要: Returned value is : false Returned value is : true 阅读全文
posted @ 2016-12-22 10:47 G善源 阅读(741) 评论(0) 推荐(0) 编辑
摘要: #more { left: -1px; top: 35px; position: absolute; Z-index: 1; background: @zzLight-0; border: 1px soli... 阅读全文
posted @ 2016-12-21 11:39 G善源 阅读(535) 评论(0) 推荐(0) 编辑
摘要: IE版本代码总结 例子 下面的条件代码只会在IE7及一下浏览器中运行 下面这一个只会运行在IE8中,并且不支持IE7或者IE9: 下面的条件代码当浏览器为IE11+ 或者非IE时为真 IE11或者非IE IE10 IE9 IE8上面已经给出 IE7 IE6 检测IE版本 阅读全文
posted @ 2016-10-24 09:55 G善源 阅读(121) 评论(0) 推荐(0) 编辑
摘要: .form-group:first-child~div.form-group 阅读全文
posted @ 2016-10-14 11:44 G善源 阅读(609) 评论(0) 推荐(0) 编辑
摘要: 到mysql官网下载 64bit ZIP Archive,Archive不用安装! 下载地址:http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.15-winx64.zip 1.配置默认文件 其实理论上现在这样就可以直接安装服务了,但是因为是 阅读全文
posted @ 2016-10-09 17:06 G善源 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 测试代码 阅读全文
posted @ 2016-09-28 16:32 G善源 阅读(369) 评论(0) 推荐(0) 编辑
摘要: function throttle(fn,delay){ var timer = null; return function (){//使用闭包,保证了全局的timer var context = this, args = arguments; clearTimeout(timer); timer 阅读全文
posted @ 2016-09-09 10:50 G善源 阅读(80) 评论(0) 推荐(0) 编辑
摘要: JS: 阅读全文
posted @ 2016-09-08 13:52 G善源 阅读(283) 评论(0) 推荐(0) 编辑