• jQuery插件(输入关键字出现提示,并可查询)


    <head>
        <title></title>
        <style type="text/css">
        #txtKey{ 300px;}
        </style>
        <link href="jquery.autocomplete.css" rel="stylesheet" type="text/css" />
        <script src="Jquery1.7.js" type="text/javascript"></script>
        <script src="jquery.autocomplete.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                var array = ['asp.net', 'asp.net mvc', 'wcf', 'wpf', 'win8', 'windows phone', '张东', '张熙', '张亚飞'];
                $('#txtKey').autocomplete(array).result(function (event, data) {
                    //$('#Text1').val(data);
                    window.location.href = 'http://www.baidu.com/s?wd=' + data + '&rsv_bp=0&ch=&tn=baidu&bar=&rsv_spt=3&ie=utf-8&rsv_sug3=6&rsv_sug=0&rsv_sug1=3&rsv_sug4=229&inputT=1458';
                });
            })
        </script>
    </head>
    <body>
        <input id="txtKey" type="text" /><input id="Button1" type="button" value="百度一下" />
        <input id="Text1" type="text" />
    </body>

  • 相关阅读:
    我回来了.jpg
    NOIp2016 day1解题报告
    丢人笔记:黑科技——使用streambuf加速读入输出
    点分治总结
    改一下OI代码风格
    算法笔记:笛卡尔树
    复腱
    poj3348Cows 凸包板子
    线段树板子poj3468
    CH4201楼兰图腾
  • 原文地址:https://www.cnblogs.com/duanlinlin/p/3065190.html
Copyright © 2020-2023  润新知