最佳答案
你好,我想从 Mvc 控制器返回一个锚
控制器名称 = 默认控制器;
public ActionResult MyAction(int id)
{
return RedirectToAction("Index", "region")
}
这样当指向 index 时,url 就是
http://localhost/Default/#region
所以
<a href=#region>the content should be focus here</a>
我不是问你是否可以这样做: 如何在 URL 中添加锚标记?