gpt4 book ai didi

javascript - Twitter Typeahead - 如何使用 "afterSelect"跳转到网站的另一个部分?

转载 作者:行者123 更新时间:2023-12-03 03:37:13 25 4
gpt4 key购买 nike

我尝试使用“window.location.hash = '#section3';”选择后跳转,但它不起作用。

$('#inputField').typeahead({
source: function (query, process) {
return $.get('test.php', { query: query }, function (data) {
console.log(data);
data = $.parseJSON(data);
return process(data);
});
},
afterSelect: function (item) {
window.location.hash = '#section3';
}
});

感谢您的帮助!

最佳答案

将window.location更改为scrollTop

脚本

$('#inputField').typeahead({
source: function (query, process) {
return $.get('test.php', { query: query }, function (data) {
console.log(data);
data = $.parseJSON(data);
return process(data);
});
},
afterSelect: function (item) {
//window.location.hash = '#section3';
$("html, body").animate({ scrollTop: $('#section3').offset().top }, 1000);
}
});

关于javascript - Twitter Typeahead - 如何使用 "afterSelect"跳转到网站的另一个部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45801276/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com