首页 > 其他分享 >HTML页面的哈希(hash)路由原理+原生js案例

HTML页面的哈希(hash)路由原理+原生js案例

时间:2024-12-25 11:52:51浏览次数:4  
标签:function hash js HTML ------------- routes 路由 curUrl

HTML页面的哈希(hash)路由原理+原生js案例| Id | Title | DateAdded | SourceUrl | PostType | Body | BlogId | Description | DateUpdated | IsMarkdown | EntryName | CreatedTime | IsActive | AutoDesc | AccessPermission |

| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------| -------------|
| 17954902| HTML页面的哈希(hash)路由原理+原生js案例| 2024-01-09T17:00:00| | BlogPost|

<!--
* 场景:不刷新页面,对页面的局部内容进行更改
*方案1:ajax 方法
*方案2:哈希(hash)路由原理
*方案2讲解:监听浏览器的url中的hash(url的#后面的文本——锚文本)值,进行更改内容
-->
<!DOCTYPE html>
<html lang="cn">
<head>
    <meta charset="UTF-8">
    <title>js原生页面hash路由</title>
    <style>
        ul{
            float: left;
            width: 200px;
        }
        li{
            list-style: none;
            padding: 8px 15px;
            background: #B9CBF7;
            text-align: center;
        }
        a{
            color: #86FF00;
        }
        #result{
            height: 200px;
            margin-left: 200px;
            line-height: 200px;
            font-size: 30px;
            text-align: center;
            color: #D64BD3;
        }
    </style>
</head>
<body>
    <div class="container">
        <ul>
            <li><a href="#/">首页</a></li>
            <li><a href="#/product">产品</a></li>
            <li><a href="#/server">服务</a></li>
        </ul>
        <div id="result"></div>
    </div>
    <script>
        //路由构造器
        function Router() {
            //接受所有的配置路由内容:锚 和 函数方法
            this.routes = {};
            //接受 改变后的 hash值
            this.curUrl = '';
            //将定义的所有路由和函数方法 传给 routes
            this.route = function (path, callback) {
                this.routes[path] = callback || function () {};
                console.log('routes[path]:'+this.routes[path])
            };
            //hash 值改变时触发的 函数方法
            this.refresh = function () {
                //获取改变的hash值(url中锚 # 号后面的文本)
                this.curUrl = location.hash.slice(1) || '/';
                this.routes[this.curUrl]();
                console.log('location.hash:'+location.hash);
                console.log('curUrl:'+this.curUrl);
                console.log('this.routes[this.curUrl]:'+this.routes[this.curUrl])
            };
            //监听load(加载url)、hashchange(hash改变)事件
            this.init = function () {
                window.addEventListener('load',this.refresh.bind(this),false);
                window.addEventListener('hashchange',this.refresh.bind(this),false)
            }
        }
        var R = new Router();//使用Router构造器
 
        R.init();//监听时间
 
        var res = document.getElementById('result');//读取id为result的元素
        //定义所有需要用的 路由:hash值 和 加载的内容
        R.route('/',function () {
            res.style.background = 'blue';
            res.innerHTML = '这是首页';
        })
        R.route('/product',function () {
            res.style.background = 'orange';
            res.innerHTML = '这是产品页';
        })
        R.route('/server',function () {
            res.style.background = 'black';
            res.innerHTML = '这是服务页';
        })
    </script>
</body>
</html>

 

| 648658| | 2024-01-09T17:00:00| false| | 2024-01-09T17:00:27.757| true| <!-- * 场景:不刷新页面,对页面的局部内容进行更改 *方案1:ajax 方法 *方案2:哈希(hash)路由原理 *方案2讲解:监听浏览器的url中的hash(url的#后面的文本——锚文本)值,进行更改内容 --> <!DOCTYPE html> <html lang="cn"> <head| Anonymous|

标签:function,hash,js,HTML,-------------,routes,路由,curUrl
From: https://www.cnblogs.com/ralphlauren/p/18621209

相关文章

  • jsgrid多个自定义控件按钮?
    jsgrid多个自定义控件按钮?|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|......
  • 前端依赖-时间管理工具(moment.js)详细使用文档
    1.安装和引入npmimoment//安装importmomentfrom'moment';//引入2.基本使用(1)获取当前时间(2)格式化时间:①年份:YYYY四位数字完整表示的年份如:2014或2000YY两位数字表示的年份如:14或98②月份:MMMM月份,完整的文本格式January到Dece......
  • jstl一些标签 中timestamp类型在页面去掉时分秒!
    jstl一些标签中timestamp类型在页面去掉时分秒!|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|--------......
  • Json转换工具类(基于google的Gson和阿里的fastjson)
    Json转换工具类(基于google的Gson和阿里的fastjson)|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------......
  • JSON
    JSON.toJSONString对象日期变为了时间戳|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|......
  • js判断checkbox是否被选中
    js判断checkbox是否被选中|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|......
  • Springboot使用RestTemplate发送Post请求postForEntity (application-json)的坑
    Springboot使用RestTemplate发送Post请求postForEntity(application-json)的坑|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||---------......
  • js压缩代码还原的vscode插件
    1.Prettier-Codeformatter:Prettier是一个非常流行的代码格式化工具,支持多种语言,包括JavaScript。它可以按照预设的规则自动格式化你的代码。对于压缩的代码,它能够很好地展开并格式化。2.Beautify:Beautify插件专为美化HTML,CSS,和JavaScript代码而设计。你可......
  • 城市JSON
    城市JSON|Id|Title|DateAdded|SourceUrl|PostType|Body|BlogId|Description|DateUpdated|IsMarkdown|EntryName|CreatedTime|IsActive|AutoDesc|AccessPermission||-------------|-------------|-------------|-------------|-------------......
  • 解决The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0.
    前言当我们要使用sass做一些炫酷的动画时候,需要用一些高阶语法例如random()以及加减乘除变量@for等等,但是sass版本过低会不支持我们的语法,在此记录下区分vue2和vue3引用sass。这里切记能用css做动效就尽量不要用js,渲染效果在越是复杂的动画就差别越大。 vue2"sass":"~1......