文件名称:hash.js:hash.js 是一个处理 location.hash 的超小型框架
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-29 01:48:09
HTML
哈希.js hash.js是一个处理的超小型框架 得到 /* * Given the following url: http://www.example.net/#!&foo=bar&array[]=1&array[]=2 */ hash ( 'foo' ) ; // 'bar' hash ( 'array' ) ; // ['1', '2'] hash ( ) ; // { foo: 'bar', array: ['1', '2'] } 放 // Results in http://www.example.net/#!&foo=bar hash ( 'foo' , 'bar' ) ; // Results in http://www.example.net/#!&foo[]=bar&foo[]=baz hash ( 'foo' , [ 'bar' , 'baz' ] ) ;
【文件预览】:
hash.js-master
----.gitignore(42B)
----hash.min.js(822B)
----package.json(645B)
----hash.js(2KB)
----README.md(955B)
----bower.json(455B)
----MIT-LICENSE(1KB)
----test()
--------index.html(3KB)