zoukankan      html  css  js  c++  java
  • 將後台的Json數據返回到前台

    前台JS代碼

    $.post('/Book/GetBookClassIDByName', { BookName: "旅遊手冊" }, function (data) {

                    if (data != 0) {                     if (parseInt($("#BookClassID").val()) == data) {                         $("#dinfo").find("h4").html("旅遊手冊-進階資料");                         $("#trTeamNo").show();

                            //$("#trTeamNo").attr("style", "");                     } else {                         $("#trTeamNo").hide();                         //$("#trTeamNo").attr("style", "display: none");                         $("#dinfo").find("h4").html("代編-進階資料");                     }                 } else {                     $("#trTeamNo").hide();                     //$("#trTeamNo").attr("style", "display: none");                     $("#dinfo").find("h4").html("代編-進階資料");                 }             });

    後台controller代碼:

     public JsonResult GetBookClassIDByName(string BookName)
            {
                int BookClassID = BookClassRepository.getBookClassIdByName(BookName);
                return Json(BookClassID);
                //IEnumerable<int> IbookClassList = BookClassRepository.getBookClassList();
                //return Json(IbookClassList.Where(x => x.ParentID == Pid), JsonRequestBehavior.AllowGet);
            }

  • 相关阅读:
    VC++6.0 自定义按钮,无标题对话框的拖动方法
    完整的使用线程池的多线程C/S Socket类
    树形控件Tree Control
    关闭数据执行保护
    VC++开发垃圾文件清理软件(下)
    用完成端口开发大响应规模的Winsock应用程序
    去掉右键多余显卡菜单
    自动登陆系统
    查询数据库中所有表名和表中所有字段名
    单行编辑框文本垂直居中(包含计算字体高度)
  • 原文地址:https://www.cnblogs.com/qhy1277/p/4686203.html
Copyright © 2011-2022 走看看