jQuery 动态云标签插件

2020-05-22 17:04:30易采站长站整理

<script src=”jquery-tag.js”/>”type=”text/javascript” charset=”utf-8″></script>
<script>
$(function(){
    $(‘#tag’).activiTag({});
});
</script>
<style>
    #tag{
        border:1px dashed gray;
        width:250px;
        height:250px;
        top: 50px;
        left: 300px;
    }
    a{
        padding:0px 3px;
        font-size:12px;
        white-space: nowrap;
        display:none;
    }
</style>
</head>
<body>
    <div id=’tag’></div>
</body>
</html>