标签: javascript jquery ajax
我正在使用以下函数在哈希更改时做一些工作。它有一个像http://www.example.com#test这样的网址,但是当url有查询字符串时它不起作用 http://www.example.com?flag=1#test。
http://www.example.com#test
http://www.example.com?flag=1#test
jQuery(window).bind( 'hashchange', function(event) { // some code // });
我该如何解决这个问题?