简体   繁体   中英

Why doesn't this anchor link work in IE11?

What is stopping the following URL from working in IE11, but works in Chrome and Firefox?

http://www.softwareconsole.com/Anchors/default.aspx?pageid=system_requirements&anchor=heading5

HTML:

<p>
<span class="heading"><a href="#heading5" name="heading5">Heading 5</a></span>
<br />
Nam pulvinar erat eget magna pharetra tincidunt. Sed lectus ...</p>

My guess would be the Ampersand (&) is giving you problems depending on the version of IE you are using. Try converting your Ampersands to:

&amp;

instead of

&

so your URL would look like this: http://www.softwareconsole.com/Anchors/default.aspx?pageid=system_requirements&amp;anchor=heading5

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM