在 ASP.NET MVC 中,我使用 JSON 和 jquery 来获取图表数据。有没有办法在数据加载和图表绘制时禁用控件并设置光标等待?我的代码摘要是
<script type="text/javascript">
$(document).ready(function () {
$.getJSON(
'@Url.Action("JsonPlot", "Home")',
function (chartData) {
var plot1 = $.jqplot('chartdiv', [points], {...});
});
});
</script>
我可以放在哪里
$("*").attr("disabled", "disabled");
$('body').css('cursor', 'wait');
进而
$("*").removeAttr('disabled');
$('body').css('cursor', 'auto');
?
谢谢!