js常用代码记录
Posted chendechang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js常用代码记录相关的知识,希望对你有一定的参考价值。
1、动态key得到某对象中相对应的value
js中想根据动态key得到某对象中相对应的value的方法有二:
1 var key = "name1";var value = obj[key]; 2 var key = "name1";var value = eval("obj."+key);
2、javascript:history.go()和History.back()的区别及应用
1 <input type=‘button‘ value=‘刷新‘ onclick="window.location.reload()"> 2 <input type=‘button‘ value=‘前进‘ onclick="window.history.go(1)"> 3 <input type=‘button‘ value=‘后退‘ onclick="window.history.go(-1)"> 4 <input type=‘button‘ value=‘前进‘ onclick="window.history.forward()"> 5 <input type=‘button‘ value=‘后退‘ onclick="window.history.back()"> 6 <input type=‘button‘ value=‘后退+刷新‘ onclick="window.history.go(-1);window.location.reload()">
3、打开新网页的方式
window.open("a.html");//只是表示新窗口打开页面,并不刷新当前页面 window.location.href="a.html";//表示在当前页面打开新页面并刷新
以上是关于js常用代码记录的主要内容,如果未能解决你的问题,请参考以下文章