zoukankan      html  css  js  c++  java
  • xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

    js location API All In One

    location

    
    "use strict";
    
    /**
     *
     * @author xgqfrms
     * @license MIT
     * @copyright xgqfrms
     * @created 2020-11-11
     * @modified
     *
     * @description
     * @difficulty Easy Medium Hard
     * @complexity O(n)
     * @augments
     * @example
     * @link
     * @solutions
     *
     * @best_solutions
     *
     */
    
    const log = console.log;
    
    if(window.location) {
      log(`window.location =`, location)
    }
    
    for(const item in location) {
      // log(`location.${item} =`, item);
      // log(`location.${item} =`, item, typeof item);
      log(`location.${item} =`, item, location[item]);
    }
    
    
    // location.ancestorOrigins = ancestorOrigins DOMStringList {length: 0}
    // location.href = href https://cdn.xgqfrms.xyz/?uri=web%2Bxgqfrms%3Aopen-web-app
    // location.origin = origin https://cdn.xgqfrms.xyz
    // location.protocol = protocol https:
    // location.host = host cdn.xgqfrms.xyz
    // location.hostname = hostname cdn.xgqfrms.xyz
    // location.port = port
    // location.pathname = pathname /
    // location.search = search ?uri=web%2Bxgqfrms%3Aopen-web-app
    // location.hash = hash
    // location.assign = assign ƒ assign() { [native code] }
    // location.reload = reload ƒ reload() { [native code] }
    // location.replace = replace ƒ replace() { [native code] }
    // location.toString = toString ƒ toString() { [native code] }
    
    
    

    https://cdn.xgqfrms.xyz/URL-Scheme/index.html

    https://cdn.xgqfrms.xyz/?uri=web%2Bxgqfrms%3Aopen-web-app

    refs

    URL-Scheme

    https://github.com/xgqfrms/cdn/blob/gh-pages/URL-Scheme/README.md



    ©xgqfrms 2012-2020

    www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


  • 相关阅读:
    Currency Exchange
    Robot Motion
    Crashing Robots
    Parencodings
    Y2K Accounting Bug
    Tautology
    Power of Cryptography
    Radar Installation -poj 1328
    The Pilots Brothers' refrigerator
    【java】之cron表达式
  • 原文地址:https://www.cnblogs.com/xgqfrms/p/13968352.html
Copyright © 2011-2022 走看看