链接
慕课网-新窗口
慕课网-本窗口
页面内锚点
随便你点,能跳走算我输……
一堆内容
第三章
输出:
向下拖动页面,还有:
点击各带下划线内容,则出现:
点击”页面内锚点“,则跳转至”第三章“;
点击 ”随便你点……“ ,无反应。
还可以对页面内容进行以下设置(在style中进行设置):
a {
color: #333333;
text-decoration: none;
}
a:visited {
color: #333333;
}
输出:
若光标指在页面显示的文本上,会发现鼠标呈现一个小手的样式,进行以下设置可以去除小手样式:
a {
color: #333333;
text-decoration: none;
cursor: none;
}



