开发者

a Link anchors not working in mvc 3

I am trying to create a simple table of contents for a help page in an MVC 3 project. I have built the simple html table containing the links that I wish it to link to within the same page.

When I run the project and click on the link in the table, nothing happens.

Part of the table:

&l开发者_JAVA百科t;tr>
    <td>
        <a href="#filtersHelp">Filters</a>
    </td>
</tr>
<tr>
    <td>
        <A href="#overviewHelp">Overview</A>
    </td>
</tr>

When any are clicked it should link to:

<h3 <a name="filtersHelp">Filters</a></h3>
 <p>
Lorem ipsum….

<h2 <a name="overviewHelp">Overview Tab</a></h2>
<p>
Lore, ispum….

</p>

I also tried replacing the <a href> by:

@Html.ActionLink()

but that didn't work either.

I am unsure what I am doing wrong.

Thank you for your assistance.


Your h2/h3 links are not closed properly!

<h3> <a name="filtersHelp">Filters</a></h3>
 <p>
Lorem ipsum….
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜