JQuery 根据 DDL 选择更新文本框

JQuery to update textbox depending on DDL selection

我有MVC 4上的序列号生成方法

当我 select 来自 DDL 的产品 ID 并按创建它时,它会生成一个序列号,索引页面没有问题

但是我希望在创建过程中向用户显示序列号,因此一旦他们 select 来自 DDL 的值,序列号就会生成并显示在读取中只有盒子。

下面是我执行串行生成器的代码片段

//
    // POST: /Item/Create

    [HttpPost]
    public ActionResult Create(Item item)
    {
        if (ModelState.IsValid)
        {
            string SerialNumber = string.Format("SN/{0}/{1}", DateTime.Now.Year, item.ProductID);
            item.SerialNumber = SerialNumber;

            db.Items.Add(item);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        ViewBag.ProductID = new SelectList(db.Products, "ProductID", "ProductID", item.ProductID);
        return View(item);
    }

我对 jquery 的经验很少,所以如果能得到有关如何实现这个想法的指导或帮助,那就太好了。如果有比 jquery 更好的方法,请告诉我:)

我很乐意提供任何信息请求

谢谢

这将为您提供二进制智能的确切概念。net/articles/… – @Frebin Francis(归功于 Frebin)