document.getElementById("column-left").getElementsByTagName("header")[0].onclick = function(){
    if(document.getElementById('vselect') === null){
         var select = document.createElement("select");
         select.setAttribute('id','vselect');
         select.options[0] = new Option("加载项1", "");
         select.options[1] = new Option("加载项2", "");
         this.appendChild(select);
    }

}

  

最新文章

  1. .NET和JAVA中BYTE的区别以及JAVA中“DES/CBC/PKCS5PADDING” 加密解密在.NET中的实现
  2. ICTCLAS20160405分词系统调试过程
  3. WIX
  4. 安装dos2unix
  5. Nodejs 请求转发代理
  6. Scala高阶函数示例
  7. [转]Could not load file or assembly 'System.Core, Version=2.0.5.0 和autofac冲突的问题
  8. hdwiki中模板的使用说明
  9. POJ 2421 Constructing Roads (最小生成树)
  10. mac 如何让文件隐藏
  11. haporoxy的keeplaive ZZ
  12. getInitParameter()
  13. Spring Security3实现,权限动态获取
  14. Android图片加载为什么选择glide
  15. It's a Mod, Mod, Mod, Mod World Kattis - itsamodmodmodmodworld (等差数列求和取模)
  16. .NET Core开发日志——OData
  17. LinkedList 源码实现
  18. python threading acquire release
  19. ExtJS5入门
  20. Mybatis的类型处理器

热门文章

  1. HDU 1827 Summer Holiday(强连通)
  2. 从头认识Spring-1.16 SpEl对集合的操作(1)-建立集合以及訪问集合的元素,以<util:list/>为例
  3. Linux下安装Mysql(RPM安装)
  4. Google代码规范工具Cpplint的使用
  5. es6 --- class 类的继承使用
  6. 数据分页jdbc+mysql实现
  7. spinlock参考资料
  8. Zero-input latency scheduler: Scheduler Overhaul
  9. linux上编译好的php添加memcache扩展
  10. Java 调用对象方法的执行过程