我正在使用 kendoUI 自动完成。要以带有“x”标记的框格式显示每条记录,我已经实现了
$("#roleAuto").kendoAutoComplete({
dataSource: roledata,
filter: "startswith",
placeholder: "Select Role...",
select: function (e, ui) {
alert("hi");
$(".roleSelection:checked").each(function () {
var role = $(this).attr("data-name"),
var span = $("<span>").text(role),
a = $("<a>").addClass("remove").attr({
title: "Remove " + role
}).text("x").appendTo(span);
alert(role);
span.insertBefore("#roleAuto");
$("#Roles").click(function () {
$("#roleAuto").focus();
});
$(".remove", document.getElementById("Roles")).live("click", function () {
$(this).parent().remove();
if ($("#Roles span").length === 0) {
$("#roleAuto").css("top", 0);
}
});
});
我能够在带有“x”符号的框中显示每条记录。如果我单击“x”标记,我可以删除记录,我想要删除的项目 ID 值。我怎样才能得到这个?