js history
2018-11-20 03:19:02来源:博客园 阅读 ()
1 history.pushState({ 2 num: 1 3 }, 'title-history', '?num=1'); 4 history.pushState({ 5 num:2 6 }, 'title-history', '?num=2'); 7 history.pushState({ 8 num: 3 9 }, 'title-history', '?num=3'); 10 history.replaceState({ 11 num: 4 12 }, 'title-history', '?num=4'); 13 window.addEventListener('popstate', function (e) { 14 //打印当前页面的数据(状态信息) 15 console.log(e.state); 16 console.log(history.state) 17 }, false) 18 19 // 当前页面地址为 http://localhost/index.html?num=4 以下代码均在浏览器控制台里面触发 20 // history.back() // 当前页面地址为 http://localhost/index.html?num=2 21 // history.forward() // 当前页面地址为 http://localhost/index.html?num=4' 22 // history.go(-2) // 当前页面地址为 http://localhost/index.html?num=1
1 代码: 2 <!DOCTYPE html> 3 <html lang="en"> 4 <head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 8 <title>Document</title> 9 <style> 10 .content { 11 width: 300px; 12 height: 300px; 13 border: 1px solid #000; 14 } 15 </style> 16 </head> 17 <body> 18 <input type="text" id="words"> 19 <input type="button" value="搜索" id="btn"> 20 <div class="content"> 21 <ul id="showData"> 22 </ul> 23 </div> 24 <script> 25 var words = document.getElementById('words'); 26 var data = [{ 27 name: 'HTML', 28 id: 'html' 29 }, { 30 name: 'CSS', 31 id: 'css' 32 }, { 33 name: 'JavaScript', 34 id: 'js' 35 }, { 36 name: 'es6', 37 id: 'es6' 38 }, { 39 name: 'es5', 40 id: 'es5', 41 }]; 42 function renderDom(data) { 43 var str = ''; 44 data.forEach(function (item, index) { 45 str += '<li>' + item.name + '</li>'; 46 }); 47 showData.innerHTML = str; 48 } 49 renderDom(data); 50 btn.onclick = function (e) { 51 var filterData = data.filter(function (item, index) { 52 return item.name.indexOf(words.value) > -1; 53 }); 54 history.pushState({ 55 word: words.value 56 }, null, '?word=' + words.value); 57 renderDom(filterData); 58 } 59 window.onpopstate = function (e) { 60 console.log(e); 61 var key = e.state ? e.state.word : ''; 62 var filterData = data.filter(function (item, index) { 63 return item.name.indexOf(key) > -1; 64 }); 65 renderDom(filterData); 66 words.value = key; 67 } 68 </script> 69 </body> 70 </html>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- JAVASCRIPT中装饰器是什么(装修) 2019-08-14
- 世界上最大的软件注册表-----npm 2019-08-14
- vue history 模式打包部署在域名的二级目录的配置指南 2019-08-14
- Babel是什么? 2019-08-14
- node、npm、chrome、v8、sandbox是什么? 2019-08-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash