是否可以打开带有单词的html文档,并在文档中使用锚链接?
基本上,这样做很好:
<html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head></head>
<body>
<h1>Florida Emergency Supplier Network for 2009-2011</h1>
<table id='table_of_contents'>
<tr>
<th></th>
<th><a href="#service_list">Browse by Services</a></th> !!! THIS LINKS TO
THE CORRECT LOCATION
IN THE DOCUMENT.
</tr> /
</table> /
<hr /> /
<h1 id='service_list'>Service List</h1> <----------------/
....more stuff here...
</body>
</html>
现在,当我按住Ctrl键并点击链接时,它们没有转到正确的位置。
修改 不幸的是,使用名称字段也不起作用,从我可以告诉......其他任何想法?
答案 0 :(得分:2)
尝试这样做:
<a name="service_list" />
<h1>Service List</h1>
或者这个:
<a name="service_list"><h1>Service List</h1></a>