点击时标记输入中的标记集数据

我在 tagify 库中遇到问题,我需要在单击某个按钮时设置输入类型 tagify 中的数据,但没有设置,这是我的代码


        $(document).ready(function() {

        $('#getInfo').on('click', function () {

            $('#kt_tagify_1').val('tag name');

        })

    });

这是我的图书馆 https://github.com/yairEO/tagify/blob/master/README.md


慕虎7371278
浏览 135回答 1
1回答

芜湖不芜

演示:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>&nbsp; <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">&nbsp; <title>Click Add Tag Demo</title>&nbsp; <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@yaireo/tagify@3.1.0/dist/tagify.css" />&nbsp; <script src="https://cdn.jsdelivr.net/npm/@yaireo/tagify@3.1.0/dist/tagify.min.js"></script>&nbsp; <script src="https://cdn.jsdelivr.net/npm/jquery@3.4.1/dist/jquery.min.js"></script></head><body>&nbsp; <input type="text" name='basic' value="tag1, tag2" />&nbsp; <button id="click">add tags</button>&nbsp; <script>&nbsp; &nbsp; var input = document.querySelector('input[name=basic]');&nbsp; &nbsp; var tagify = new Tagify(input);&nbsp; &nbsp; $("#click").on("click", function() {&nbsp; &nbsp; &nbsp; var n = "ADD_IT_" + Math.random();&nbsp; &nbsp; &nbsp; var tags = [];&nbsp; &nbsp; &nbsp; tags.push(n);&nbsp; &nbsp; &nbsp; tagify.addTags(tags);&nbsp; &nbsp; })&nbsp; </script></body></html>你可以在这里找到一个方法https://github.com/yairEO/tagify#events如何使用:
打开App,查看更多内容
随时随地看视频慕课网APP