任何人都知道如何在php / html表单上显示建议列表?
我不知道这个名字。但那就是我知道的。例如:http://www.brandedwatch.co.id/shopping-cart
当你在该网站上填写kota tujuan表格(城市)时。
如果您在表单上填写jakarta,它将从数据库中显示simillar到jakarta单词列表。
如果我的代码如何显示:
<form action="doShip" method="post">
City : <input type="text" name="city">
</form>
感谢
答案 0 :(得分:0)
看到这是可行的例子,这可能会对你有很大的帮助
我使用过jquery autocomplete
$(function() {
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$("#tags").autocomplete({
source: availableTags
});
});
&#13;
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script>
</script>
</head>
<body>
<div class="ui-widget">
<label for="tags">Tags:</label>
<input id="tags">
</div>
</body>
</html>
&#13;