您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jQuery添加删除标签插件

    时间:2014-05-16 17:33 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表
    jQuery添加删除标签插件jQuery添加删除标签插件是一款基于jquery开发的标签功能加强插件,可以生成或删除标签,还能对输入重复标签进行检查。jquery添加删除jQuery插件tag标签

    <link rel="stylesheet" type="text/css" href="css/jquery.tagsinput.css" />
    <script type="text/javascript" src="js/jquery-1.8.0.min.js"></script>
    <script type="text/javascript" src="js/jquery.tagsinput.js"></script>
    <script type='text/javascript' src='js/jquery-ui.min.js'></script>
    <link rel="stylesheet" type="text/css" href="css/jquery-ui.css" /> 
    <script type="text/javascript"> 
    function onAddTag(tag) {
    alert("Added a tag: " + tag);
    }
    function onRemoveTag(tag) {
    alert("Removed a tag: " + tag);
    function onChangeTag(input,tag) {
    alert("Changed a tag: " + tag);
    }
     
    $(function() { 
    $('#tags_1').tagsInput({width:'auto'});
    $('#tags_2').tagsInput({
    width: 'auto',
    onChange: function(elem, elem_tags)
    {
    var languages = ['php','ruby','javascript'];
    $('.tag', elem_tags).each(function()
    {
    if($(this).text().search(new RegExp('\\b(' + languages.join('|') + ')\\b')) >= 0)
    $(this).css('background-color', 'yellow');
    });
    }
    });
    $('#tags_3').tagsInput({
    width: 'auto', 
    //autocomplete_url:'test/fake_plaintext_endpoint.html' //jquery.autocomplete (not jquery ui)
    autocomplete_url:'test/fake_json_endpoint.html' // jquery ui autocomplete requires a json endpoint
    }); 
    // Uncomment this line to see the callback functions in action
    // $('input.tags').tagsInput({onAddTag:onAddTag,onRemoveTag:onRemoveTag,onChange: onChangeTag});
     
    // Uncomment this line to see an input with no interface for adding new tags.
    // $('input.tags').tagsInput({interactive:false});
    }); 
    </script>
    jQuery添加删除标签插件由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/7725.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!