实现百度搜索栏自动提示功能

<script type="text/javascript" src="../lib/jquery-1.7.1.min.js"></script>
    <link rel="stylesheet" type="text/css" href="../src/jquery.autocomplete.css"></link>
    <script type="text/javascript" src="../src/jquery.autocomplete.min.js"></script>
    <script src="../test/test.js"></script>
    <style type="text/css">
        body {
            margin: 0px;
            background: #f4f4f4;
            font-family: Helvetica Neue, Helvetica, Arial;
        }
    </style>
<script type="text/javascript">
        $(document).ready(function(){
            $('#down').AutoComplete({
                'data': ['One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten', 'Eleven', 'Twelve'],
                'itemHeight': 20,
                'width': 280
            }).AutoComplete('show');


        });
    </script>

 <body>里面

<div style="width:1000px;margin:auto;">
        <div style="display:table-cell;">
            <div style="height:503px;width:330px;">
                <input type="text" id="down" value="e"></input><span style="font-weight:bold;font-size:13px;">补全列表在下方</span>
            </div>
        </div>
    </div>

相关推荐