_Desc.cshtml 683 B

123456789101112131415161718192021222324
  1. @using WeApp.Helpers
  2. @{
  3. string id = "desc-info";
  4. }
  5. @Html.Partial("__/_AreaBox", $"课程介绍#{id}")
  6. <div style="display: none" id="@id-pre">
  7. <div class="desc-info">
  8. <img class="" src="~/Content/V2/Desc/01.png" />
  9. </div>
  10. </div>
  11. @using (Html.BeginScripts())
  12. {
  13. <script id="desc-info-script">
  14. var $descInfoBody = $('#@id .box-body');
  15. $descInfoBody.html($('#@id-pre').html());
  16. function LoadDescImage(image) {
  17. $descInfoBody.html(` <div class="desc-info"><img class="" src="${image}" /></div>`);
  18. }
  19. $(function() {
  20. OverlayScrollbar($descInfoBody.closest('.scroll-box'));
  21. });
  22. </script>
  23. }