码迷,mamicode.com
首页 >  
搜索关键字:javascript html5 本地存储 localstorage    ( 76009个结果
select设置innerHMTL
select控件在标准浏览器下可以直接innerHTML设置内容,IE则不行。HTML结构: 先看直接使用select.innerHTMLvar form = document.forms["form1"]; var select = form["select1"]; select...
分类:其他好文   时间:2014-04-29 16:04:37    阅读次数:431
《Cracking the Coding Interview》——第17章:普通题——题目9
2014-04-28 23:52题目:设计算法,找出一本书中某个单词的出现频率。解法:数就行了。代码: 1 // 17.9 Given a book, find out the occurrences of any given words in it. 2 // Answer: 3 // 1....
分类:其他好文   时间:2014-04-29 16:00:32    阅读次数:388
C# 多线程处理相关说明: WaitHandle,waitCallback, ThreadPool.QueueUserWorkItem
class TestThread { static void Main() { //使用WaitHandle静态方法阻止一个线程,直到一个或多个同步对象接收到信号 WaitHandle[] waitHa...
分类:编程语言   时间:2014-04-29 15:55:22    阅读次数:557
Type入门(JavaScript的超集)-译
你是否听过 TypeScript?TypeScript 是 JavaScript 的超集,TypeScript结合了类型检查和静态分析,显式接口。TypeScript是微软的开源项目,它是由C#之父Anders Hejlsberg发起的。
分类:编程语言   时间:2014-04-29 15:54:27    阅读次数:603
c语言程序设计第一章3
字符数组是C语言中最常用的数组类型。下面我们通过编写一个程序,来说明字符数组以反操作字符数组的函数的用法。该程序读入一组文本行,并把最长的文水行打印出来。该算法的基本框架非常简单: while (还有未处理的行) i f (该行比已处理的最长行还要长) 保存该行 保存该行的长度 打印最长的...
分类:编程语言   时间:2014-04-29 15:50:20    阅读次数:506
【Thinking In Java零散笔记】对于持有对象一章中的显示系统环境变量代码分析
今天仍旧进行着学习java的计划。在学习到持有对象一章中,看到了如下代码: 1 import java.util.*; 2 3 public class EnvironmentVariables { 4 public static void main(String[] args) { 5 ...
分类:编程语言   时间:2014-04-29 15:49:20    阅读次数:507
css中的四个不同的position设置
hello everyone.This is a heading with no positionThis heading is moved left according to its normal positionThis heading is moved right according t...
分类:Web程序   时间:2014-04-29 15:47:14    阅读次数:584
第二条 遇到多个构造器参数时,要考虑用构建器
静态工厂和构造器都有个共同的局限性,就是它们都不能够很好的扩展到大量的可选参数。如:public class NutritionFacts{ private final int servingSize; private final int servings; privat...
分类:其他好文   时间:2014-04-29 15:31:47    阅读次数:371
《Cracking the Coding Interview》——第17章:普通题——题目7
2014-04-28 23:28题目:给定一个数字,用英语把它读出来。解法:ZOJ上有相反的题目。如果我要用中文读书来呢?代码: 1 // 17.7 Read an integer in English. 2 #include 3 #include 4 using namespace s...
分类:其他好文   时间:2014-04-29 15:29:44    阅读次数:423
MySQL : interactive_timeout v/s wait_timeout
Most of the database intensive applications are worring about the default values of these variables obviously. Developers used to inform me that they ...
分类:数据库   时间:2014-04-29 15:26:38    阅读次数:739
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!