首页 > 建站教程 > PHP教程 >
  • jQuery中获取页面宽高等尺寸的方法集合

    jQuery中获取页面宽高等尺寸的方法集合

    $(document).width() $('body').width() ? $(document).width() : $('body').width(); $(document).height() $('body').height() ? $(document).height() : $('body').height(); alert($(window).height()); //浏览器时下窗口可视区域高度 alert(

  • DIV+CSS规范命名大全集合

    DIV+CSS规范命名大全集合

    在做网页布局时,切记,命名一定要有规范,要留有命名空间。以下,是我爱模板网总结的一些css命名技巧和常见命名规则: 一、DIV+CSS规范命名大全集合 1)、所有的命名最好都小写

  • 实用的sublime插件集合

    实用的sublime插件集合

    sublime是一款小巧玲珑,带有代码提示功能的编辑器。它还有强大的插件扩展功能。下面就罗列一些常用的插件,供大家参考: Package Control 功能:安装包管理 简介:sublime插件控制台,提

  • 将getElementsByName()与getElementsByTagName()获取的集合转成数组

    将getElementsByName()与getElementsByTagName()获取的集合转成数组

    getElementsByName()与getElementsByTagName()方法的共同之类是它们会把所取得的页面元素组成一个元素集合并非是数组(虽然用firebug中的console.log()打印出来时是数组的形式)。如果用Object.porot

  • Dart 集合Set

    Dart 集合Set

    Set表示对象的集合,其中每个对象只能出现一次。dart:core库提供了Set类来实现相同的功能。### 语法```javaIdentifier = new Set()```**或者**```javaIdentifier = new Set.from(Iterable)```其中, **Iterable** 表

  • Dart编程实例 - 集合 Queue

    Dart编程实例 - 集合 Queue

    ## Dart编程实例 - 集合 Queue```dartimport dart:collection;void main() { Queue queue = new Queue(); print(Default implementation ${queue.runtimeType}); queue.add(10); qu

  • Dart编程实例 - 集合 Maps

    Dart编程实例 - 集合 Maps

    ## Dart编程实例 - 集合 Maps```dartvoid main() { var details=new Map(); details[Usrname]=admin; details[Password]=admin@123; print(details);}```

  • Dart编程实例 - 集合 Set

    Dart编程实例 - 集合 Set

    ## Dart编程实例 - 集合 Set```dartvoid main() { Set numberSet = new Set(); numberSet.add(100); numberSet.add(20); numberSet.add(5); numberSet.add(60); numberSet.add

  • Dart编程实例 - 集合列表

    Dart编程实例 - 集合列表

    ## Dart编程实例 - 集合列表```dartvoid main() { List logTypes = new List(); logTypes.add(WARNING); logTypes.add(ERROR); logTypes.add(INFO); // iterating across list

  • Dart编程实例 - 迭代集合

    Dart编程实例 - 迭代集合

    ## Dart编程实例 - 迭代集合```dartimport dart:collection;void main() { Queue numQ = new Queue(); numQ.addAll([100,200,300]); Iterator i= numQ.iterator; while(i.moveNext())