Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<a href="#about">About us</a> .... <div id="about"> Thank you </div>
此内部链接适用于桌面视图。明显地。但是当涉及到移动视图时,链接不起作用。
是触摸问题还是其他问题?
<div id="about"> Thank you </div>
您使用的 ID 是最新的方式,并受 HTML 5 和最新的浏览器支持。您的移动设备可能不支持它,因为它不支持最新的方法
旧方法是使用 name 属性作为
<a name="C4">Chapter 4</a>
但是html5不支持这个
所以最好同时使用两者。没试过。但会为你工作。
<a name="C4" id="C4">Chapter 4</a>