<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content...
分类:
其他好文 时间:
2014-09-18 13:25:44
阅读次数:
227
感谢自学IT网的燕十八老师 <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale...
分类:
Web程序 时间:
2014-09-18 09:57:24
阅读次数:
325
我们有时候需要对一行数据做一个单击事件,即点击行中的任意位置都能触发该事件,我遇到的问题是在一个ul标签中的li标签中,当点击行中的任何一个位置时都让有反应进行不同的显示,我这里做了个demo,如果有更好的方法请分享一下:<!DOCTYPEhtml>
<html>
<head&..
分类:
编程语言 时间:
2014-09-18 03:08:44
阅读次数:
269
git不同于类似SVN这种版本管理系统,虽然熟悉常用的操作就可以满足大部分需求,但为了在遇到麻烦时不至于靠蛮力去尝试,了解git的原理还是很有必要。
文件
通过git管理的文件版本信息全部存放在根目录.git下,稍微看下:
$ ls .git
COMMIT_EDITMSG HEAD branches description index logs...
分类:
其他好文 时间:
2014-09-18 00:53:23
阅读次数:
361
1.the use of 'with open... as ...'2.the use of pickle(dump and load)for Step1:the 'with open ... as...' is the short format of 'try...except...finally...
分类:
编程语言 时间:
2014-09-17 23:13:52
阅读次数:
259
用C++写二叉树时碰到的问题, C++中*&连用表示对指针的引用,比如在代码中的这类用法:void createTree(Node *&head){ TypeElement data; cin >> data; if (data == '#') { head =...
分类:
编程语言 时间:
2014-09-17 20:11:22
阅读次数:
287
题目链接1 -- Enter your code here. Read input from STDIN. Print output to STDOUT2 import Data.List3 main = do4 inputdata f (head xs) (length xs)) . g...
分类:
其他好文 时间:
2014-09-17 20:06:42
阅读次数:
254
#!/bin/bash
loglast=`cat/var/lib/mysql/localhost-bin.index|awk-F"/"‘{print$2}‘|tail-n1`//取出正在使用binlog日志
if[!-e/binlogdir];then
mkdir/binlogdir
fi
foriin`cat/var/lib/mysql/localhost-bin.index|awk-F"/"‘{print$2}‘`//遍历所有的binlog日志
do
logna..
分类:
其他好文 时间:
2014-09-17 18:51:23
阅读次数:
252
[代码][CSS]代码 $.fn.share = function(opts) { var $body, $head; if ($(this).length === 0) { console.log("Share Button: No elements found."); return; } $.....
分类:
Web程序 时间:
2014-09-17 18:18:42
阅读次数:
338
下面代码动态设置浏览器文档模式HtmlHead head = (HtmlHead)Page.Header; HtmlMeta contentType = new HtmlMeta();//显示字符集的设定 设定页面使用的字符集 contentType.Http...
分类:
Web程序 时间:
2014-09-17 15:03:52
阅读次数:
167