如何使用tag-it在一些变量中存储id和标签

时间:2015-03-12 11:13:56

标签: javascript jquery tag-it

我正在使用tag-it。 此代码正常运行。但问题是我无法得到它的身份。 我想在我的服务器端代码中同时获取id和tag(想要存储在某些隐藏字段中)值。

通过使用fieldName: "tagValues",它附加了一个隐藏字段,标记名称为<input type="hidden" style="display:none;" value="school,college" name="tagValues">

如何存储ID?

以下是我的代码。

 $(document).ready(function() {
                            $("#myTags").tagit({
                            singleField: true,
                            allowSpaces: false,
                            minLength: 2,
                            removeConfirmation: true,
                            tagLimit: 2,
                            fieldName: "tagValues",
                            placeholderText: "Tag your page (max 2)",
                            tagSource: function(request, response) {
                                console.log(request + " " + response);
                                $.ajax({
                                    url: "PageTagSuggestion",
                                    data: {term: request.term},
                                    dataType: "json",
                                    success: function(data) {
                                        response($.map(data.tagList, function(item) {
                                            return {
                                                label: item.tag,
                                                value: item.tag,
                                                value1: item.id
                                            }
                                        }
                                        ));
                                    }
                                });
                            },
                            onTagLimitExceeded: function(event, ui) {
                                alert("You are exceeding tag limit");
                            }, 
                        });
                    });
 <ul id="myTags" name="tag"></ul>

0 个答案:

没有答案