<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
@this.RenderSection("Head_Js", false)
</head>
<body>
@this.RenderSection("Body_Content", true)
</body>
</html>Home/Index.cshtml:
@{
ViewBag.Title = "ASP.NET MVC3视图占位符RenderSection使用示例";
Layout = "~/Views/Shared/MasterPage.cshtml";
}
@section Head_Js{
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
}
@section Body_Content{
<div id="msg"></div>
<script type="text/javascript">
$(document).ready(function () {
$("#msg").html("hello,section.");
});
</script>
}
评论(0)
暂无评论。