每天一个JavaScript实例-标量参数和数组参数的功能性区别
window.onload = function(){
var items = new Array('apple','orange','cherry','lime');
var sep = "*";
func(items,sep);
console.log(items);
console.log(sep);...
分类:
编程语言 时间:
2014-10-13 19:57:17
阅读次数:
211
python 遍历字典几种方法脚本:#!/usr/bin/python dict={"a":"apple","b":"banana","o":"orange"} print "##########dict######################" for i in dict: ...
分类:
编程语言 时间:
2014-09-23 19:12:15
阅读次数:
308
/*所有浏览器*/.test{font-size:60px}/*only ie9,ie9 支持 :root 选择器,:root .class{ background-color:orange; }这样FF,opera等也认识;所以要写成:root .class{ background-color:o...
分类:
Web程序 时间:
2014-09-15 17:12:49
阅读次数:
199
#-*-coding:utf-8-*-__author__='Administrator'importsysfromPyQt4importQtGui,QtCorerows="ABCD"choices=['apple','orange','banana']classDelegate(QtGui.QIt...
分类:
其他好文 时间:
2014-09-12 13:16:13
阅读次数:
546
在html中引入css样式,可以改变html的块布局方式,使得界面的布局更加美观。接下来看一个基础布局的小例子:
margin布局
#container{
width: 1002px;
background: gray;
}
#header{
height: 120px;
background: orange;
}...
分类:
Web程序 时间:
2014-08-28 14:54:49
阅读次数:
273
编写运行于x86实模式下的16位代码是一个很复古的话题,编写能在DOS下运行的Plain Binary可执行文件是一个更复古的话题。以往,凡是需要使用x86的16位实模式的时候,作者都喜欢那NASM来编程。比如《30天自制操作系统》、《Orange's 一个操作系统的实现》、《x86汇编语言——从实...
分类:
系统相关 时间:
2014-08-24 16:35:42
阅读次数:
422
题目链接Your algorithms have become so good at predicting the market that you now know what the share price of Wooden Orange Toothpicks Inc. (WOT) will be...
分类:
其他好文 时间:
2014-08-17 08:07:01
阅读次数:
238
材料:
1 nasm:编译汇编源代码,网上很多地方有下
2 WinHex:作为windows系统中的写U盘工具,需要是正版(full version)才有写的权限,推荐:http://down.liangchan.net/WinHex_16.7.rar
步骤:
1 编译得到引导程序的机器代码。用命令行编译汇编源代码:name boot.asm -o boot.bin,其中boot...
分类:
其他好文 时间:
2014-08-10 21:42:40
阅读次数:
425
interface Fruit { void eat(); } class Apple implements Fruit { public void eat() { System.out.println("I am eating apple."); } } class Orange implemen...
分类:
编程语言 时间:
2014-08-04 13:28:37
阅读次数:
229
下面提供一种跟随鼠标移动的提示框的思路,方便在以后工作中应用,主要是应用到鼠标移动产生的数值来进行移动提示框的定位...CSS代码.box{height:100px;width:100px;background:orange;position:relative;margin:40px;}.move{...
分类:
移动开发 时间:
2014-08-04 10:40:27
阅读次数:
257