To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

上一页 1 ··· 6 7 8 9 10 11 12 下一页

2013年6月1日 #

在nodejs中如何用异步的方式读取一个文件

摘要: demo:var fs=require('fs');fs.readFile('file.txt', 'utf-8',function(err,data){ if(err){ console.error(err) } else { console.log(data); }});console.log('end'); 阅读全文

posted @ 2013-06-01 09:40 Ijavascript 阅读(195) 评论(0) 推荐(0) 编辑

2013年5月31日 #

捕获鼠标点击 位置移动

摘要: <!DOCTYPE HTML><html dir="ltr" lang="zh-CN"><head> <meta charset="utf-8"> <title></title> <style type="text/css"> #info{width:100px;height: 100px;background-color: #ff0000;position: absolute;top: 0;left: 0;} </style 阅读全文

posted @ 2013-05-31 14:51 Ijavascript 阅读(233) 评论(0) 推荐(0) 编辑

2013年5月30日 #

$.getJSON 的用法

摘要: <!DOCTYPE HTML><html dir="ltr" lang="zh-CN"><head> <meta charset="utf-8"/> <title></title> <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script></head><body> 阅读全文

posted @ 2013-05-30 17:34 Ijavascript 阅读(325) 评论(0) 推荐(0) 编辑

2013年5月29日 #

php mysql增、删、改、查

摘要: <?php require_once "connect.php";echo <<<_END<!DOCTYPE HTML><html dir="ltr" lang="zh-CN"> <head> <meta charset="utf-8"> <title></title> </head> <body> <form action="sql_test.php" method=& 阅读全文

posted @ 2013-05-29 23:55 Ijavascript 阅读(263) 评论(0) 推荐(0) 编辑

mysql test

摘要: <?php /** * @sqltest.php */require_once "app_config.php";if (isset($_POST['delete']) && isset($_POST['isbn'])) { $isbn=get_post('isbn'); $query="delete from classics where isbn='$isbn'"; if (!mysql_query($query)) { echo mysql_error(); }} 阅读全文

posted @ 2013-05-29 18:12 Ijavascript 阅读(208) 评论(0) 推荐(0) 编辑

2013年5月28日 #

瀑布流

摘要: <!DOCTYPE html><html><head> <meta charset="utf-8"> <title>瀑布流布局(绝对定位)</title> <style type="text/css"> html, body{ height:100% } html, body, #warp p{ margin:0; padding:0 } #warp{ margin:20px auto; posit... 阅读全文

posted @ 2013-05-28 23:29 Ijavascript 阅读(278) 评论(0) 推荐(0) 编辑

Overlay 遮罩层

摘要: <!DOCTYPE HTML><html lang="zh-CN"><head> <meta charset="utf-8"> <title></title> <style type="text/css"> img{padding: 5px;} #outer{width: 100%;height: 100%;} .overlay{background-color: #000;opacity: .7;filter:alpha(opacity=70);po 阅读全文

posted @ 2013-05-28 11:09 Ijavascript 阅读(422) 评论(0) 推荐(0) 编辑

2013年5月27日 #

Preventing and Event from Propagation Through a set of Nested Elements

摘要: <!DOCTYPE HTML><html lang="zh-CN"> <head> <meta charset="utf-8"> <title>Prevent Propagation</title> <style type="text/css"> #one{width: 100px;height: 100px;background-color: #0f0;} #two{width: 50px;height: 50px;background-color: 阅读全文

posted @ 2013-05-27 22:25 Ijavascript 阅读(177) 评论(0) 推荐(0) 编辑

Using Function Closures with Timers

摘要: <!DOCTYPE HTML><html lang="zh-CN"> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #redbox{position: absolute;left: 100px;top: 100px;width: 200px;height: 200px;background-color: red;} </style> </he 阅读全文

posted @ 2013-05-27 21:43 Ijavascript 阅读(156) 评论(0) 推荐(0) 编辑

2013年5月18日 #

lists and Dictionaries

摘要: >>> print {i : chr(65+i) for i in range(4)} {0 : 'A', 1 : 'B', 2 : 'C', 3 : 'D'} >>> print {k : v for k, v in someDict.iteritems()} == someDict.copy() 1 >>> print {x.lower() : 1 for x in list_of_email_addrs} {'barry@zope.com' : 1, &# 阅读全文

posted @ 2013-05-18 14:52 Ijavascript 阅读(151) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 下一页