我试图拨打另一个页面,以接收该页面上的代码。当我第一次调用JSON.cshtml
它时,它工作正常,但调用JSON2.cshtml
它时什么也不返回。怎么会这样?
默认.cshtml
@{
Layout = "~/_Layout_Main.cshtml";
}
@section head{
<script>
$(".btn").click(function ()
{
get_update();
});
function get_update()
{
$("#success").load("JSON2.cshtml");
};
function get_contact()
{
$("#success").load("JSON.cshtml");
};
</script>
}
<div id="success"></div>
<script>
get_contact();
</script>
<a href="#" class="btn" style="color: #fff;">btn</a>
JSON.cshtml
<p style="color: #fff;">
Hello
</p>
JSON2.cshtml
@{
for(int i = 0; i > 10; i++)
{
<p style="color: #fff;">
@i
</p>
<br />
}
}