有没有办法检查 jquery 中的 url 参数并通过刷新 url 在 url 中附加一些内容。因此,如果当前 url 路径是:
function myView() {
// if url does not have params of view='list' {
// update the url with http://someurl.com/test/&view=list
} else {
//dont update
}
}
有没有办法检查 jquery 中的 url 参数并通过刷新 url 在 url 中附加一些内容。因此,如果当前 url 路径是:
function myView() {
// if url does not have params of view='list' {
// update the url with http://someurl.com/test/&view=list
} else {
//dont update
}
}
var url= $(location).attr('href');
var val = url.indexOf('view');
if (val < 0) {
url += "?view=list";
window.location = url;
}
使用 Push 和 PopState 查看文章: http ://www.hawkee.com/snippet/9940/