zoukankan      html  css  js  c++  java
  • js 离散文件合并到一个js(调试)

    /**

     * 引入HGIS的离散js文件

     */

    var OpenLayers= {

       /**

        * Constant: VERSION_NUMBER

        */

       VERSION_NUMBER: "Release 2.13",

       /**

        * Constant: singleFile

        * TODO: remove this in 3.0 when we stop supporting build profiles that

        * include OpenLayers.js

        */

       singleFile: true,

       /**

        * Method: _getScriptLocation

        * Return the path to this script. This is also implemented in

        * OpenLayers.js

        *

        * Returns:

        * {String} Path to this script

        */

       _getScriptLocation: (function() {

       var r = new RegExp("(^|(.*?\/))(hgis[^\/]*?\.js)(\?|$)"),

               s = document.getElementsByTagName('script'),

               src, m, l = "";

           for(var i=0, len=s.length; i<len; i++) {

               src = s[i].getAttribute('src');

               if(src) {

                   m = src.match(r);

                   if(m) {

                       l = m[1];

                       break;

                   }

               }

           }

           return (function() { return l; });

       })(),

       ImgPath : ''

    };

    function includeBaseJS(){

        jsFiles = [

            "BaseTypes/Class.js",

       "BaseTypes/String.js

       ]; // etc.    var scripts = new Array(myjsFiles.length);    for (var i=0, len=myjsFiles.length; i<len; i++) {        scripts[i] = "<script src='" + myjsFiles[i] +                               "'></script>";     }    if (scripts.length > 0) {        document.write(scripts.join(""));    }}

    // 引入HGIS源码的离散js文件includeBaseJS();

    Right! is "Fuck GIS",but don't think too much; It means reach a high during playing GIS. Come on!
  • 相关阅读:
    js自定义事件
    js回调函数
    git和github使用
    23种设计模式(10):命令模式
    HBase查询引擎——Phoenix的使用
    八、shell的管道
    七、Linux的shell的重定向
    五、Linux的常用命令 和 使用方式 1
    十二、TestNG分组测试2
    十一、TestNG依赖测试
  • 原文地址:https://www.cnblogs.com/jsbrml/p/5614726.html
Copyright © 2011-2022 走看看