123456789101112131415161718192021222324 |
- @using WeApp.Helpers
- @{
- string id = "desc-info";
- }
- @Html.Partial("__/_AreaBox", $"课程介绍#{id}")
- <div style="display: none" id="@id-pre">
- <div class="desc-info">
- <img class="" src="~/Content/V2/Desc/01.png" />
- </div>
- </div>
- @using (Html.BeginScripts())
- {
- <script id="desc-info-script">
- var $descInfoBody = $('#@id .box-body');
- $descInfoBody.html($('#@id-pre').html());
- function LoadDescImage(image) {
- $descInfoBody.html(` <div class="desc-info"><img class="" src="${image}" /></div>`);
- }
- $(function() {
- OverlayScrollbar($descInfoBody.closest('.scroll-box'));
- });
- </script>
- }
|