亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? prototype.js

?? 用來在地圖上做操作GIS,在地圖上做標記
?? JS
?? 第 1 頁 / 共 5 頁
字號:
/*  Prototype JavaScript framework, version 1.5.1.1 *  (c) 2005-2007 Sam Stephenson * *  Prototype is freely distributable under the terms of an MIT-style license. *  For details, see the Prototype web site: http://www.prototypejs.org/ */*--------------------------------------------------------------------------*//*** @classDescription Declares the version of the prototype library.*/var Prototype = { /** * Version of the library. */  Version: '1.5.1.1',  Browser: {    IE:     !!(window.attachEvent && !window.opera),    Opera:  !!window.opera,    WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,    Gecko:  navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1  },  BrowserFeatures: {    XPath: !!document.evaluate,    ElementExtensions: !!window.HTMLElement,    SpecificElementExtensions:      (document.createElement('div').__proto__ !==       document.createElement('form').__proto__)  }, /** * RegExp used to identify scripts. */  ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',  JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/, /** * Empty function object. */  emptyFunction: function() { },   /** * Function to echo back the specified parameter. * @param {Object} x	Parameter to echo. * @return {Object} Returns the specified parameter. */  K: function(x) { return x }}/** * @classDescription Declares a class. * @constructor */var Class = {  create: function() {    return function() {      this.initialize.apply(this, arguments);    }  }}var Abstract = new Object();/** * Implements inheritance by copying the properties and methods from one element to another. * @alias Object.extend() * @param {Object} destination	Destination object to inherit the properties and methods. * @param {Object} source	Source object to inherit properties and methods from. * @return {Object} Returns the destination object with the properties and methods from the source object. * @extends {Object} */Object.extend = function(destination, source) {  for (var property in source) {    destination[property] = source[property];  }  return destination;}Object.extend(Object, {  inspect: function(object) {    try {      if (object === undefined) return 'undefined';      if (object === null) return 'null';      return object.inspect ? object.inspect() : object.toString();    } catch (e) {      if (e instanceof RangeError) return '...';      throw e;    }  },  toJSON: function(object) {    var type = typeof object;    switch(type) {      case 'undefined':      case 'function':      case 'unknown': return;      case 'boolean': return object.toString();    }    if (object === null) return 'null';    if (object.toJSON) return object.toJSON();    if (object.ownerDocument === document) return;    var results = [];    for (var property in object) {      var value = Object.toJSON(object[property]);      if (value !== undefined)        results.push(property.toJSON() + ': ' + value);    }    return '{' + results.join(', ') + '}';  },  keys: function(object) {    var keys = [];    for (var property in object)      keys.push(property);    return keys;  },  values: function(object) {    var values = [];    for (var property in object)      values.push(object[property]);    return values;  },  clone: function(object) {    return Object.extend({}, object);  }});/** * Binds an instance of the function to the object that owns the function. * @alias Function.bind() * @param {Function} function	Function to bind to its owner object. * @param {Object, Array} ... Arguments to use when calling the function. * @return {Object} Returns the function pre-bound to its owner object with the specified arguments. * @extends {Function} */Function.prototype.bind = function() {  var __method = this, args = $A(arguments), object = args.shift();  return function() {    return __method.apply(object, args.concat($A(arguments)));  }}/** * Binds an instance of a function to the object that owns the function as an event listener. * @alias Function.bindAsEventListener() * @param {Object} object	Function to bind to its owner object. * @return {Object} Returns the function pre-bound to its owner object with the current event object as its argument. * @extends {Function} */Function.prototype.bindAsEventListener = function(object) {  var __method = this, args = $A(arguments), object = args.shift();  return function(event) {    return __method.apply(object, [event || window.event].concat(args));  }}Object.extend(Number.prototype, {  toColorPart: function() {    return this.toPaddedString(2, 16);  },/** * Returns the next number in an iteration. * @alias Number.succ() * @return {Number} Returns the next number in an iteration. * @extends {Number} */  succ: function() {    return this + 1;  },/** * Calls the iterator function, repeatedly passing the current index as the index argument. * @alias Number.times() * @param {Object} iterator	Iterator function to call. * @extends {Number} */  times: function(iterator) {    $R(0, this, true).each(iterator);    return this;  },  toPaddedString: function(length, radix) {    var string = this.toString(radix || 10);    return '0'.times(length - string.length) + string;  },  toJSON: function() {    return isFinite(this) ? this.toString() : 'null';  }});Date.prototype.toJSON = function() {  return '"' + this.getFullYear() + '-' +    (this.getMonth() + 1).toPaddedString(2) + '-' +    this.getDate().toPaddedString(2) + 'T' +    this.getHours().toPaddedString(2) + ':' +    this.getMinutes().toPaddedString(2) + ':' +    this.getSeconds().toPaddedString(2) + '"';};/** * Tries the specified function calls until one of them is successful. * @alias Try.these() * @param {Function, Array}	Function call(s) to try. * @return {String, Number}	Returns the value of the first successful function call. */var Try = {  these: function() {    var returnValue;    for (var i = 0, length = arguments.length; i < length; i++) {      var lambda = arguments[i];      try {        returnValue = lambda();        break;      } catch (e) {}    }    return returnValue;  }}/*--------------------------------------------------------------------------*//** * @classDescription Creates a PeriodicalExecuter object to call a function repeatedly at the specified interval. */var PeriodicalExecuter = Class.create();PeriodicalExecuter.prototype = {   /** * Initializes the PeriodicalExecutor object. * @alias PeriodicalExecutor.initialize() * @param {Function} callback	Function to be called. * @param {Object} frequency	Interval (in seconds) to call the function at. */  initialize: function(callback, frequency) {    this.callback = callback;    this.frequency = frequency;    this.currentlyExecuting = false;    this.registerCallback();  },  /** * Registers a callback function. * @alias PeriodicalExecutor.registerCallback() */  registerCallback: function() {    this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);  },  /**   * Stops execution of the timer event.   * @alias PeriodicalExecutor.stop   */  stop: function() {    if (!this.timer) return;    clearInterval(this.timer);    this.timer = null;  },  /** * Calls the function at on the timer event. * @alias PeriodicalExecutor.onTimerEvent */  onTimerEvent: function() {    if (!this.currentlyExecuting) {      try {        this.currentlyExecuting = true;        this.callback(this);      } finally {        this.currentlyExecuting = false;      }    }  }}Object.extend(String, {  interpret: function(value) {    return value == null ? '' : String(value);  },  specialChar: {    '\b': '\\b',    '\t': '\\t',    '\n': '\\n',    '\f': '\\f',    '\r': '\\r',    '\\': '\\\\'  }});Object.extend(String.prototype, {	  /**   * Returns the string with every occurence of a given pattern replaced by either a regular string, the returned value of a function or a Template string. The pattern can be a string or a regular expression.   * @alias String.gsub   * @param {String} pattern	Pattern to replace.   * @param {String} replacement	String to replace the pattern with.   * @return {String}	Returns the string with every occurence of a given pattern replaced.   * @extends {String}   */  gsub: function(pattern, replacement) {    var result = '', source = this, match;    replacement = arguments.callee.prepareReplacement(replacement);    while (source.length > 0) {      if (match = source.match(pattern)) {        result += source.slice(0, match.index);        result += String.interpret(replacement(match));        source  = source.slice(match.index + match[0].length);      } else {        result += source, source = '';      }    }    return result;  },  /**   * Returns a string with the first count occurrences of pattern replaced by either a regular string, the returned value of a function or a Template string. pattern can be a string or a regular expression.   * @alias String.sub   * @param {String} pattern	Pattern to search for.   * @param {String} replacement	Replacement string.   * @param {Number} count	Number of occurrences to replace.   * @return {String} Returns a string with the first count occurrences of pattern replaced by either a regular string, the returned value of a function or a Template string.   * @extends {String}   */  sub: function(pattern, replacement, count) {    replacement = this.gsub.prepareReplacement(replacement);    count = count === undefined ? 1 : count;    return this.gsub(pattern, function(match) {      if (--count < 0) return match[0];      return replacement(match);    });  },  /**   * Allows iterating over every occurrence of the given pattern (which can be a string or a regular expression).   * @alias String.scan   * @param {String} pattern	Pattern to search for.   * @param {Iterator} iterator	Iterator to use.   * @return {String} Returns the original string.   * @extends {String}   */  scan: function(pattern, iterator) {    this.gsub(pattern, iterator);    return this;  },  /**   * Truncates a string to the given length and appends a suffix to it (indicating that it is only an excerpt).   * @alias String.truncate   * @param {Object} length Length to truncate the string.   * @param {Object} truncation Text to append to the string.   * @return {String} Returns the truncated string.   * @extends {String}   */  truncate: function(length, truncation) {    length = length || 30;    truncation = truncation === undefined ? '...' : truncation;    return this.length > length ?      this.slice(0, length - truncation.length) + truncation : this;  },  /**   * Strips all leading and trailing whitespace from a string.   * @alias String.strip   * @return {String} Returns the string with the whitespace stripped.   * @extends {String}   */  strip: function() {    return this.replace(/^\s+/, '').replace(/\s+$/, '');  },  /** * Removes the HTML or XML tags from a string. * @alias String.stripTags * @return {String} Returns the string with any HTML or XML tags removed. * @extends {String} */  stripTags: function() {    return this.replace(/<\/?[^>]+>/gi, '');  },  /** * Removes any <script></script> blocks from a string. * @alias String.stripScripts() * @return {String} Returns the string with any <script></script> blocks removed. * @extends {String} */  stripScripts: function() {    return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');  },  /**  * Extracts any <script></script> blocks from a string and returns them as an array.  * @alias String.extractScripts  * @return	{Array} Returns an array of any <script></script> that the string contains.  * @extends {String}  */  extractScripts: function() {    var matchAll = new RegExp(Prototype.ScriptFragment, 'img');    var matchOne = new RegExp(Prototype.ScriptFragment, 'im');    return (this.match(matchAll) || []).map(function(scriptTag) {      return (scriptTag.match(matchOne) || ['', ''])[1];    });  }, /** * Evaluates the <script></script> blocks found in a string. * @alias String.evalScripts * @return {String, Number, Object, Boolean, Array} Returns the result of the script. * @extends {String} */  evalScripts: function() {    return this.extractScripts().map(function(script) { return eval(script) });  },

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品免视看| 久久99热狠狠色一区二区| 丝袜亚洲另类欧美| 国产91丝袜在线播放0| 欧美日韩一区不卡| 欧美激情资源网| 青青草97国产精品免费观看无弹窗版| 成人短视频下载| 精品国产一二三区| 天天av天天翘天天综合网| 国产成人在线色| 日韩精品中午字幕| 日韩高清在线不卡| 欧美网站一区二区| 国产精品福利av| 国产精品一区二区在线播放| 欧美日韩精品一区二区天天拍小说 | 这里只有精品99re| 亚洲综合久久久| 99久久免费国产| 久久精品人人做人人综合 | 夜夜嗨av一区二区三区四季av| 久久99精品国产麻豆婷婷| 色噜噜偷拍精品综合在线| 国产亲近乱来精品视频| 国产很黄免费观看久久| 日韩精品影音先锋| 久久99在线观看| 在线不卡的av| 日本怡春院一区二区| 欧美喷水一区二区| 亚洲电影欧美电影有声小说| 欧美日韩亚洲国产综合| 亚洲.国产.中文慕字在线| 欧美在线制服丝袜| 亚洲成人一二三| 69久久夜色精品国产69蝌蚪网| 亚洲精品成人a在线观看| 欧美午夜精品免费| 亚洲成人自拍一区| 日韩三级免费观看| 国产一区美女在线| 中文字幕日韩精品一区| 91麻豆高清视频| 亚洲成a人片综合在线| 7799精品视频| 狠狠色狠狠色综合日日91app| 久久嫩草精品久久久精品一| 国产aⅴ综合色| 亚洲激情在线播放| 欧美一区二区三区色| 国内精品视频666| 亚洲欧美自拍偷拍色图| 欧美性感一区二区三区| 首页综合国产亚洲丝袜| 久久久激情视频| 在线影视一区二区三区| 三级欧美韩日大片在线看| 欧美电影免费观看高清完整版| 韩国欧美国产1区| 最好看的中文字幕久久| 欧美伊人久久久久久久久影院| 美美哒免费高清在线观看视频一区二区| 2020国产精品久久精品美国| 成人国产亚洲欧美成人综合网| 一区二区激情视频| 精品美女一区二区| 91在线国内视频| 日本免费在线视频不卡一不卡二| 久久伊99综合婷婷久久伊| 色婷婷综合久久久中文字幕| 免费观看在线综合| 欧美国产日韩亚洲一区| 欧美男生操女生| 丰满少妇久久久久久久| 亚洲一区日韩精品中文字幕| 久久亚洲捆绑美女| 欧美视频一区二区三区四区| 国产成人在线视频网站| 青草av.久久免费一区| 亚洲色图20p| 久久综合一区二区| 欧美日韩国产小视频| aaa欧美日韩| 国产一区91精品张津瑜| 日韩黄色小视频| 亚洲精品国产精华液| 国产欧美精品一区二区三区四区| 欧美亚洲综合网| 91在线国产福利| 成人久久18免费网站麻豆| 狠狠色综合日日| 青娱乐精品视频| 亚洲国产aⅴ天堂久久| 亚洲色欲色欲www| 国产精品视频一二三| 精品国产伦理网| 91精品国产一区二区人妖| 色天天综合久久久久综合片| 成人国产精品免费观看动漫 | 成人一级视频在线观看| 精品一区二区三区在线观看国产| 午夜国产精品一区| 一区二区三区欧美日| ㊣最新国产の精品bt伙计久久| 久久精品一区二区三区av| 精品电影一区二区三区| 日韩精品一区二区在线| 精品福利一区二区三区| 日韩色在线观看| 欧美成人a在线| 精品国产a毛片| 26uuu精品一区二区三区四区在线| 91精品国产乱码久久蜜臀| 欧美日韩不卡在线| 欧美久久久久久蜜桃| 欧美年轻男男videosbes| 69堂精品视频| xnxx国产精品| 国产亚洲自拍一区| 国产精品国模大尺度视频| 国产精品午夜春色av| 亚洲国产成人私人影院tom| 亚洲欧洲三级电影| 一区二区三区在线免费| 夜夜亚洲天天久久| 偷窥少妇高潮呻吟av久久免费| 秋霞国产午夜精品免费视频| 精品在线免费视频| 大陆成人av片| 色综合欧美在线| 欧美色图激情小说| 日韩美女视频在线| 国产精品网曝门| 一区二区在线免费| 丝袜亚洲另类欧美综合| 韩国视频一区二区| 91视视频在线观看入口直接观看www| av一二三不卡影片| 欧美日韩精品欧美日韩精品| 欧美v国产在线一区二区三区| 国产亚洲视频系列| 亚洲美女视频在线观看| 日韩**一区毛片| 成人国产精品免费观看| 欧美精品vⅰdeose4hd| 久久久国产一区二区三区四区小说| 亚洲欧洲成人自拍| 免费一级片91| 一本在线高清不卡dvd| 91麻豆精品国产综合久久久久久 | 亚洲一区二区在线观看视频| 日韩电影在线一区二区三区| 国产一区二区三区免费播放| 91老师片黄在线观看| 91精品视频网| 中文字幕欧美一| 美女免费视频一区二区| 一本到不卡精品视频在线观看| 日韩女优电影在线观看| 亚洲综合色网站| 国产黄人亚洲片| 日韩天堂在线观看| 一区二区三区国产豹纹内裤在线| 国内精品不卡在线| 欧美日韩小视频| 亚洲色图欧美偷拍| 国产成人精品网址| 日韩欧美不卡在线观看视频| 亚洲午夜免费电影| 99久久伊人网影院| 国产无遮挡一区二区三区毛片日本| 亚洲午夜免费福利视频| 白白色亚洲国产精品| www久久精品| 日本vs亚洲vs韩国一区三区二区| 91丝袜国产在线播放| 国产亚洲一二三区| 激情偷乱视频一区二区三区| 555www色欧美视频| 亚洲第一狼人社区| 欧美在线一区二区| 亚洲精品中文字幕在线观看| 国产成人精品三级| 久久精品这里都是精品| 久久99久久精品欧美| 欧美日韩电影在线播放| 一个色综合av| 在线观看av一区| 一区二区三区波多野结衣在线观看| 懂色中文一区二区在线播放| 精品va天堂亚洲国产| 日本成人在线不卡视频| 91麻豆精品国产无毒不卡在线观看 | 欧美日韩一区久久| 亚洲五码中文字幕| 欧美午夜精品理论片a级按摩| 亚洲一区二区精品视频| 91成人免费网站| 日韩中文欧美在线|