您现在的位置: 爱51代码网 >> 范文 >> 文章正文
webform中文本框textbox自动联想代码

webform中文本框textbox自动联想代码

winform中的textbox可以通过AutoCompleteMode和AutoCompleteSource属性来实现自动联想,不过在webform中的textbox好像没有这俩属性呀,只有一个AutoCompleteType属性,好像也实现不了,难道webform的textbox不支持么?
   也查过一些资料,基本都是用js实现的,不过没找到合适的,有些也看不懂,有哪位大神能提供点好的方法么? Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.

The datasource is a simple JavaScript array, provided to the widget using the source-option.

view <!doctype html> <html lang="en"><head>  <meta charset="utf-8" />  <title>jQuery UI Autocomplete - Default functionality</title>  <link rel="stylesheet" href="http:-//code.jquery.-com/ui/1.10.3/themes/smoothness/jquery-ui.css" />  <script src="http-://code.jquery.-com/jquery-1.9.1.js"></script>  <script src="http:-//code.jquery.-com/ui/1.10.3/jquery-ui.js"></script>  <link rel="stylesheet" href="/resources/demos/style.css" />  <script>  $(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    });  });  </script></head><body> <div class="ui-widget">  <label for="tags">Tags: </label>  <input id="tags" /></div>  </body></html>

Want to learn more about the autocomplete widget? Check out the API documentation.

  • 上一篇文章:

  • 下一篇文章: 没有了
  • 最新文章 热点文章 相关文章
    java如何判断一个字符串里的数字
    随机找出24个不一样的字,在把一
    java怎么实现html转为pdf
    lotus数据列表文档个数如何实时统
    lotus代理中LS如何将字符串保存到
    在lotus BS系统里怎样方便实现统
    undefined reference timer_crea
    linux文件/usr/lib破坏了,还原后
    linux上运行system函数时,print
    Failed to open eth0
    java如何判断一个字符串里的数字
    undefined reference timer_crea
    Failed to open eth0
    C/C++洗牌算法源代码
    ZOJ 3700 Ever Dream 文章中单词
    TortoiseGit和msysGit安装及使用
    sharepoint 2010 获取用户信息Us
    设计包含max函数的队列
    mysql主从同步延迟方案解决的学习
    青岛科学六年级下册教材分析
    WPF控件的访问限制没有了
    ""!=transStatus与transStat
    WPF如何获取鼠标坐标的颜色R
    WPF下System.Windows.Ink的手
    ViewBag.AllowRemember ?? t
    c#serialport IO异常,请问是
    System.Collections.Generic
    如何用 Webbrowser 控件来点
    C#中如何动态提升权限
    LINK : fatal error LNK1123
     



    设为首页 | 加入收藏 | 网站地图 | 友情链接 |