first, the page jumps in the anchor point setting
The jump in the page takes two steps:
Method One:
①: Set an anchor link <a href= "#miao" > Go to the Meow </a>; (Note: The attribute value of the href attribute is preceded by #)
②: Set anchor points in the desired position on the page <a name= "Miao" ></a>; (note: A label to write a Name property, the property value is the same as the value of the href in ①, no #) in the label as required to fill in the necessary text, generally do not write content
Method Two:
①: ① of the same method one
②: Set the location of the anchor point
Method Two do not have to add a tag individually to set the anchor point, only add an ID in the desired position of the label.
Small case:
<! DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 transitional//en" "Http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
Second, cross-page jump
①: Sets the anchor link, appended to the path in the href: #+ anchor name, you can
such as: <a href= "Meng Pet assembly number. Html#miao" > Jump to the Cute assembly number page </a>
②: To jump to the page to set the anchor point, the method see a step ②, two ways to choose one.