作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我的页面正在加载:
<div class="accordion">
<h2><a href="#">Pending Flyers</a></h2>
<div id="flyers-0" class="accordion-item"><% Html.RenderPartial("ManageFlyers", new { flyers = pendingFlyersWithCategory }); %></div>
<h2><a href="#">Approved Flyers</a></h2>
<div id="flyers-1" class="accordion-item"><% Html.RenderPartial("ManageFlyers", new { flyers = approvedFlyersWithCategory }); %></div>
<h2><a href="#">Denied Flyers</a></h2>
<div id="flyers-2" class="accordion-item"><% Html.RenderPartial("ManageFlyers", new { flyers = deniedFlyersWithCategory }); %></div>
<h2><a href="#">Published Flyers</a></h2>
<div id="flyers-3" class="accordion-item"><% Html.RenderPartial("ManageFlyers", new { flyers = publishedFlyersWithCategory }); %></div>
<h2><a href="#">Expired Flyers</a></h2>
<div id="flyers-4" class="accordion-item"><% Html.RenderPartial("ManageFlyers", new { flyers = expiredFlyersWithCategory }); %></div>
</div>
用这个java脚本来做 Accordion 的事情:
<script language="javascript" type="text/javascript">
if ($('.accordion').length > 0) {
$('.accordion-item').hide();
$('.accordion-selected').show();
$('.accordion h2').click(function () {
$(this).next('.accordion-item').slideToggle('slow');
});
$('.accordion h2 a').click(function () {
var element = $(this).parent().next('.accordion-item');
element.slideToggle('slow');
return false;
});
}
</script>
<script type="text/javascript">
$(document).ready(function () {
// Accordian state restore
var accord = '<%= Session["accordianIndex"] %>';
var currentindex = 0;
if (accord != "") {
currentindex = accord;
}
$("#flyers-" + currentindex).slideToggle("slow");
// end Accordian state restore
});
$("div.description").expander({
slicePoint: 200
});
</script>
我想将其设置为使用 AJAX 加载部分 View ,并在展开 Accordion 的该部分时插入它们,以加快页面的初始加载速度。
我已经尝试过 <%= Ajax.ActionLink ... %>
和 javascript 来加载它,但我无法让它工作。如有任何建议,我们将不胜感激。
最佳答案
如果您为这些部分设置 Controller 操作 (PartialViewResult),您可以使用 jQuery $.ajax 调用加载它们。你会写类似的东西
$.ajax({ url: /controller/Action, data: {stuff} });
这种方法可以让您抵消加载时间,就像您在切换 Accordion 时在点击方法或其他事件中描述的那样。
更新:
如果您已经拥有此页面的本地数据,我建议您执行类似 Handlebars 的操作模板,只需 $("div").append() 将数据添加到您所在的页面,其中 div 是您想要包含数据的选择器。
关于javascript - 如何在 ASP.NET 应用程序的折叠 div 中加载部分 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10555451/
我是一名优秀的程序员,十分优秀!