示例控制器:

        public ActionResult Index()
        {
            ViewBag.js = "<script type='text/javascript'>alert('abc');</script>";
            return View();
        }

页面:

<html>
<head>
    <title>Demo</title>
</head>
<body>
    <div>
        @Html.Raw(ViewBag.js)
    </div>
</body>
</html>

就可以了

相关文章:

  • 2021-07-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-02
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
  • 2021-07-19
  • 2021-12-25
  • 2022-12-23
相关资源
相似解决方案