标签: javascript jquery
如何使用<h4>作为锚来停止页面滚动?
<h4>
即。当我滚动到<h4>时,你无法向下滚动。
答案 0 :(得分:0)
您可以添加css类cursor属性:
cursor
h4 { cursor: pointer; /*<----this will make all the h4 elements to have hand cursor. */ }
<h4>Acting as anchor with pointer cursor.</h4>