我正在尝试使用ASP .Net MVC开发一个小型CRUD项目,作为我学习经验的一部分,我正在尝试使用jQuery和Ajax来获取数据并显示它。
我是JavaScript和ajax的新手,不确定如果我以错误的方式评论它。
在下面的代码中,我评论了
$('#btnUpdate').show();
$('#btnAdd').hide()
函数,但它们仍然在页面上执行。
function getbyID(CusId) {
$('#CustomerName').css('border-color', 'lightgrey');
$('#Age').css('border-color', 'lightgrey');
$('#Address').css('border-color', 'lightgrey');
$.ajax({
url: "/Customers/getbyID/" + CusId,
type: "GET",
contentType: "application/json;charset=UTF-8",
dataType: "json",
success: function (result) {
$('#Id').val(result.Id);
$('#CustomerName').val(result.CustomerName);
$('#Age').val(result.Age);
$('#Address').val(result.Address);
$('#myModal').modal('show');
//$('#btnUpdate').show();
//$('#btnAdd').hide();
},
error: function (errormessage) {
alert(errormessage.responseText);
}
});
return false;
}
我清理了解决方案并再次构建它,但代码仍在执行中。是否有不同的方式来评论代码。
好了问题现在解决了,我清除了浏览器缓存,它已经开始工作了。因为我是新手,我不知道javascript的执行风格。