これは本当に奇妙で、どこが間違っているのかわかりません。
これが私のコントローラーです:
namespace MvcAJAX.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult Called()
{
var retObject = new { rollNo = 2, name = "Deepanjan" };
return Json(retObject);
}
}
}
ここに私のインデックスビューがあります:
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<script>
/// <reference path="~/Scripts/jquery-1.7.1.js" />
$(document).ready(function () {
$('#button1').click(function () {
$.getJSON("/Home/Called",function () {
alert('Working!');
$('#p1').text("Roll Number was " + data.rollNo + " and the Name was " + data.name);
});
});
});
</script>
<h1>This page demos Load with callback function!</h1>
<input type="button" id="button1" value="Click Me!"/><br />
<p style="height:200px" id="p1"></p>
<hr />
私の getJSON は単に機能せず、アラートも表示されません。どうしたの?