如何使用
我试图用选项标签锚定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这样的事情:
FIDDLE
Try something like this:
FIDDLE
您需要向 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()