新值和旧值合并在一起如何在jQuery中选择新值时删除旧值

时间:2018-07-16 14:55:02

标签: jquery asp.net json ajax asp.net-mvc

我正在使用组合框。程序第一次运行时,值会加载到标签中。然后,当我从选择中选择一个值时,旧值和新值合并在一起。选择新值时如何删除旧值?

例如,我的输出为372746705。项目加载时,第一个值为3727。新值为46705

$(document).ready(function() {
  InActiveTotalNo();
  $("#Projectlist").change(function() {
    InActiveTotalNo();
  });
});


function InActiveTotalNo() {
  $.ajax({
    type: 'GET',
    url: '@Url.Action("mInActiveMember")',
    dataType: 'json',
    data: {
      PhaseID: $("#Projectlist").val()
    },
    success: function(mInActivemember) {
      $('#InActiveno').html($('#InActiveno').html() + mInActivemember);
      //$("#InActiveno").after("<span class='InActive'>" + mInActivemember + '</span>');
    },
    error: function(ex) {
      var r = jQuery.parseJSON(response.responseText);
      alert("Message: " + r.Message);
      alert("StackTrace: " + r.StackTrace);
      alert("ExceptionType: " + r.ExceptionType);
    }
  });
  return false;
}

0 个答案:

没有答案