gpt4 book ai didi

jQuery AutoSuggest 插件

转载 作者:行者123 更新时间:2023-12-01 07:34:21 25 4
gpt4 key购买 nike

有人可以发布一个简单的 html 代码来说明如何使用简单的数据对象来实现它。

这是链接http://code.drewwilson.com/entry/autosuggest-jquery-plugin

我已经尝试了一切让它工作,但到目前为止我还没有成功,有人可以帮忙吗

谢谢

梅森

最佳答案

这似乎工作正常(基本上是从网站上得到的),可能需要一些样式才能得到你想要的效果。也不确定你的数据从哪里来,但他也有一些 ajax 示例。

无论如何,将以下内容另存为 .html 文档作为示例。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://the-know-your-rights.googlecode.com/svn-history/r10/trunk/resources/js/jquery/autoSuggest/jquery.autoSuggest.minified.js"></script>
<script type="text/javascript">
var $sel = null;
$(document).ready(function () {
var data = {items: [
{value: "21", name: "Mick Jagger"},
{value: "43", name: "Johnny Storm"},
{value: "46", name: "Richard Hatch"},
{value: "54", name: "Kelly Slater"},
{value: "55", name: "Rudy Hamilton"},
{value: "79", name: "Michael Jordan"}
]};
$("input[type=text]").autoSuggest(data.items, {selectedItemProp: "name", searchObjProps: "name"});
});
</script>
</head>
<body>
<input type="text" />
</body>
</html>

如果这不是您想要的,请用更具体的信息更新您的问题,我会看看能否为您提供更好的答案。

关于jQuery AutoSuggest 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3670665/

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