質問

I am no coder, but know enough HTML to get the job done.

I have simple anchors for in-page linking and they work in every browser but Chrome.

What is the average joe explanation of what I can do to get them to work?

[a title="Important Safety Information" href="#isi"] Important Safety Information [/a]

[a id="ISI" name="ISI"][/a]

Page with anchor link: http://educationexchangehcp.ndei.org/novo/bolus-insulin-type-2-diabetes-education-novo-nordisk.aspx Click on Important Safety Information on the right.

Please help! Thank you, Brian

役に立ちましたか?

解決

Your anchor is in all caps, but the link is in all lowercase. Change the <a id="ISI" name="ISI"></a> to <a id="ISI" name="isi"></a>. Also, if you're not using the ID tag for anything else, I'd just get rid of it. You don't need it for the anchor link to work.

他のヒント

HTML classes and ID names are case-sensitive. Change your code to [a title="Important Safety Information" href="#ISI"].

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top