我正在尝试在 jquery 中设置会话。这是代码,但无法弄清楚。请查看评论下方的行。我该怎么做?
$(document).ready(function () {
$("#demo-input-facebook-theme").tokenInput("http://xxx.com/MedService.aspx", {
onAdd: function (item) {
// *************************************
// I want to add item.name to below code
// *************************************
<% HttpContext.Current.Session["Session_Post_Kategori"] += "item.name"; %>
},
onDelete: function (item) { },
theme: "facebook"
});
});