我想制作一个像这样的网址
www.site.com/?q=house
但是当我打开网站时,我得到了
www.site.com/#
之后的javascript
window.location.hash = "q=house";
网址看起来像
www.site.com/#q=house
哈希来自哪里?如何从网址中删除它?
我的RouteConfig,如果它很重要
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
使用MVC 5.
答案 0 :(得分:2)
您正在设置哈希而不是查询字符串。这就是原因。
http://www.w3schools.com/jsref/prop_loc_hash.asp
您应该使用window.location.href
之类的:
window.location.href = window.location.href + "?q=house";
如果要更新参数,可以使用以下方法:
function UpdateQueryString(key, value, url) {
if (!url) url = window.location.href;
var re = new RegExp("([?&])" + key + "=.*?(&|#|$)(.*)", "gi");
if (re.test(url)) {
if (typeof value !== 'undefined' && value !== null)
return url.replace(re, '$1' + key + "=" + value + '$2$3');
else {
var hash = url.split('#');
url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, '');
if (typeof hash[1] !== 'undefined' && hash[1] !== null)
url += '#' + hash[1];
return url;
}
}
else {
if (typeof value !== 'undefined' && value !== null) {
var separator = url.indexOf('?') !== -1 ? '&' : '?',
hash = url.split('#');
url = hash[0] + separator + key + '=' + value;
if (typeof hash[1] !== 'undefined' && hash[1] !== null)
url += '#' + hash[1];
return url;
}
else
return url;
}
}