如何使用

发布于 2024-09-01 13:33:52 字数 277 浏览 3 评论 0原文

我试图用选项标签锚定 div,但它不起作用,我的代码有什么问题吗?这是锚点片段

<select>
        <option value="#b1">1 test</option>
</select>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="b1">Testing!</div>

I'm trying to anchor a div with an option tag but it doesn't work, what´s wrong with my code? Here´s the anchor snippet

<select>
        <option value="#b1">1 test</option>
</select>
<br />
<br />
<br />
<br />
<br />
<br />
<div id="b1">Testing!</div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

注定孤独终老 2024-09-08 13:33:52

尝试这样的事情:

FIDDLE

<select onchange="location = this.options[this.selectedIndex].value;">
   <option value="#b1">1 test</option>
   <option value="#b2">2 test</option>
   <option value="#b3">3 test</option>
</select>

<div id="b1">Testing 1</div>
...
<div id="b2">Testing 2</div>
...
<div id="b3">Testing 3</div>
...

Try something like this:

FIDDLE

<select onchange="location = this.options[this.selectedIndex].value;">
   <option value="#b1">1 test</option>
   <option value="#b2">2 test</option>
   <option value="#b3">3 test</option>
</select>

<div id="b1">Testing 1</div>
...
<div id="b2">Testing 2</div>
...
<div id="b3">Testing 3</div>
...
不如归去 2024-09-08 13:33:52

您需要向 select 元素添加一个 onchange 处理程序。

函数scrollTo(elmt)
{
$(elmt.options[elmt.selectedIndex].value).scrollTo(); //有原型

您的选择中,添加 onchange=scrollTo()

You'll need to add an onchange handler to the select element.

function scrollTo(elmt)
{
$(elmt.options[elmt.selectedIndex].value).scrollTo(); //With Prototype
}

To your select, add onchange=scrollTo()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文