会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
I城
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2016年11月10日
jquery添加事件
摘要: 点击事件:$('.car table tr td a').click(function()})
阅读全文
posted @ 2016-11-10 11:05 I城
阅读(154)
评论(0)
推荐(0)
2016年11月2日
页面滚动
摘要: //最新动态滚动function AutoScroll(obj){ $(obj).find("ul:first").animate({ marginTop:"-25px" },500,function(){ $(this).css({marginTop:"0px"}).find("li:first"
阅读全文
posted @ 2016-11-02 17:55 I城
阅读(94)
评论(0)
推荐(0)
js获取传的参数
摘要: var getInfo=window.location.search.slice(window.location.search.lastIndexOf("?")+6);
阅读全文
posted @ 2016-11-02 09:42 I城
阅读(211)
评论(0)
推荐(0)
2016年10月25日
360浏览器兼容问题
摘要: 极速模式兼容,兼容模式不兼容在hand里加上<meta name="renderer" content="webkit"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
阅读全文
posted @ 2016-10-25 10:39 I城
阅读(121)
评论(0)
推荐(0)
2016年7月31日
批量上传图片
摘要: <form action="demo_form.asp" method="get">Select images: <input type="file" name="img" multiple="multiple" /><%--利用multiple选择多个文件--%> <input type="sub
阅读全文
posted @ 2016-07-31 14:45 I城
阅读(103)
评论(0)
推荐(0)
2016年7月28日
查询最近每天的总和,即查询结果的数量
摘要: SELECT SUM(secondLuckNumber) ,#每天字段secondLuckNumber的和 DATE_FORMAT(time, '%Y%m%d') days FROM records GROUP BY days DESC #从最新开始显示 SELECT count(*) FROM (
阅读全文
posted @ 2016-07-28 14:15 I城
阅读(284)
评论(0)
推荐(0)