for循环 语法: for(初始化表达式;条件表达式;循环变量变化表达式){ //循环体 } 初始化表达式:用于初始化循环变量值 条件表达式:如果为true则执行循环体,否则退出循环 循环变量变化表达式:用于循环变量的控制 如:i++ 执行顺序: 第一步:初始化表达式(只会执行一次) 第二步:条件表 ...
分类:
其他好文 时间:
2017-05-26 21:43:12
阅读次数:
203
//点击div外面隐藏弹窗function click_out_div(){ $(document).bind("click",function(e){ var target = $(e.target); if(target.closest("#select_div").length == 0){/ ...
分类:
其他好文 时间:
2017-05-26 17:04:43
阅读次数:
165
using System; using System.Collections.Generic; using System.Linq; using System.Web; /// <summary> /// Car 的摘要说明 /// </summary> public class Car { pub ...
分类:
其他好文 时间:
2017-05-26 11:57:57
阅读次数:
278
我觉得这个好点。 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #include<iostream> 5 using namespace std; 6 #define N 50005 7 #define lc o*2 8 ...
分类:
其他好文 时间:
2017-05-26 11:52:32
阅读次数:
172
onchange 改变 status 状态get 获取 ste 设置remove 移除 append 添加create 添加 Node 节点tag 标签 element 元素checked 检查 opacity 不透明度float 浮动 location 跳转location.reload 刷新页面 ...
分类:
其他好文 时间:
2017-05-26 10:48:14
阅读次数:
146
当字数超过一行时,可以用...代替 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 这三个样式同时使用才有效,也可以去掉white-space样式,分两行 ...
分类:
Web程序 时间:
2017-05-26 00:45:38
阅读次数:
186
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> li { list-style: none; width: 114px; height: 140px; background: url(img/n ...
分类:
其他好文 时间:
2017-05-25 19:00:18
阅读次数:
160
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author:XXX map = { '浦西':{ '黄浦区':{ '城隍庙':['小吃','九曲桥','绿波廊'], '南京路步行街':['第一百货','沈大成','永安百货'], }, '徐汇区':{ ...
分类:
其他好文 时间:
2017-05-25 13:26:02
阅读次数:
184
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum ...
分类:
Web程序 时间:
2017-05-25 11:38:52
阅读次数:
1871
(一)在easyui框架里 在a标签里添加class='easyui-linkbutton' 如: (二)问题:在ie9里圆角背景overflow:hidden 不起作用 (a)框架内 html 部分 (b)CSS部分 (三)解决: 在ie9 下 按钮背景色不加到.l-btn (a)直接加到.l-b ...
分类:
其他好文 时间:
2017-05-25 10:13:33
阅读次数:
214