admin管理员组文章数量:1391975
Currently I use page numbers in hashes with Ben's Alman jquery-hashchange plugin:
$(document).ready(function(){
$(window).hashchange( function(){
var hash = (location.hash) ? location.hash.slice(1) : 'page1';
$.ajax({
url: '/list/' + hash, // result url like page1, page2 etc.
Now I need to add there one more value - filter
.
I think result hash URL can look like
#page1&filter=1-1-0
#filter=1-1-0 (if page number is omitted)
#page1 (if filter is not defined)
How to parse that? I.e. how to understand if page
is defined, if filter
is defined (and what are the values - 1
, 1
and 0
- I need them separately)?
I was thinking about Ben's Alman BBQ plugin, but (1) it looks too plicated for such simple task, (2) not sure how to use parameters (page1, page2 etc.) without values.
Currently I use page numbers in hashes with Ben's Alman jquery-hashchange plugin:
$(document).ready(function(){
$(window).hashchange( function(){
var hash = (location.hash) ? location.hash.slice(1) : 'page1';
$.ajax({
url: '/list/' + hash, // result url like page1, page2 etc.
Now I need to add there one more value - filter
.
I think result hash URL can look like
#page1&filter=1-1-0
#filter=1-1-0 (if page number is omitted)
#page1 (if filter is not defined)
How to parse that? I.e. how to understand if page
is defined, if filter
is defined (and what are the values - 1
, 1
and 0
- I need them separately)?
I was thinking about Ben's Alman BBQ plugin, but (1) it looks too plicated for such simple task, (2) not sure how to use parameters (page1, page2 etc.) without values.
Share Improve this question edited Feb 13, 2013 at 9:14 James Allardice 166k22 gold badges334 silver badges315 bronze badges asked Nov 5, 2011 at 8:54 LA_LA_ 20.4k60 gold badges179 silver badges318 bronze badges1 Answer
Reset to default 5Very simple and unextediable parser for two hardcoded variables:
var hash_parts = location.hash.split('&', 2); //2 - limit, may be changed if more than two arguments
for(i in hash_parts) {
if(hash_parts[i].indexOf("page") === 0) { //begins with "page"
var current_page_number = hash_parts[i].substr(4);
}
else if(hash_parts[i].indexOf("filter") === 0) { //begins with "filter"
var filter = hash_parts[i].split('=', 2);
var filer_values = filter[1].split('-'); //filter_values == {'1', '1', '0'}
}
}
You can easily make it universal.
Please, also take a look here: Parse query string in JavaScript - just change window.location.search.substring(1)
to hash.
本文标签: javascriptHow to use multiple hashesStack Overflow
版权声明:本文标题:javascript - How to use multiple hashes? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744683364a2619550.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论