html查找和定位元素或文本的简单方法

时间:2014-06-03 21:24:40

标签: javascript html

好吧所以我有一个问题我有简单的html网站填充文本,我想制作一个按钮,它有一个onclick功能,使我的窗口(页面时刻的位置)找到一个id =“元素的元素“并改变窗口位置。比如ctr + F函数,但没有突出显示元素

<head>
<script>
    function h1Location(){

                   enter code here
    }       

</script>
</head>
<body>
   <header >
        <div  style="position:fixed;">
        <input type="button" onclick="h1Location()" />
        </div>
   </header>

   <nav>
       <h1 id="firstHeader"   >TEXT</h1>

   </nav>
</body>

所以在这种情况下我只想让按钮找到并将PageView更改为'TEXT'(h1,id =“firstHeader”,所以不要向上或向下滚动它立即为你做。

1 个答案:

答案 0 :(得分:0)

在页面锚点链接中:

    Click <a href="#placeToScroll">here</a> to see some lower down part the author thinks is important. 

<!--REST OF PAGE-->

    <a name="placeToScroll">Here's that lower down part!</a>