select控件在标准浏览器下可以直接innerHTML设置内容,IE则不行。HTML结构:
先看直接使用select.innerHTMLvar form = document.forms["form1"]; var select =
form["select1"]; select...
分类:
其他好文 时间:
2014-04-29 16:04:37
阅读次数:
431
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
class TestThread { static void Main() {
//使用WaitHandle静态方法阻止一个线程,直到一个或多个同步对象接收到信号 WaitHandle[] waitHa...
分类:
编程语言 时间:
2014-04-29 15:55:22
阅读次数:
557
你是否听过 TypeScript?TypeScript 是 JavaScript
的超集,TypeScript结合了类型检查和静态分析,显式接口。TypeScript是微软的开源项目,它是由C#之父Anders Hejlsberg发起的。
分类:
编程语言 时间:
2014-04-29 15:54:27
阅读次数:
603
字符数组是C语言中最常用的数组类型。下面我们通过编写一个程序,来说明字符数组以反操作字符数组的函数的用法。该程序读入一组文本行,并把最长的文水行打印出来。该算法的基本框架非常简单:
while (还有未处理的行) i f (该行比已处理的最长行还要长) 保存该行 保存该行的长度 打印最长的...
分类:
编程语言 时间:
2014-04-29 15:50:20
阅读次数:
506
今天仍旧进行着学习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
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
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
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