我已经阅读了在就绪处理程序之外使用 jQuery 的代码,如果以这种方式使用它,有什么缺点?无论出于何种原因,我都对以这种方式编码感到不舒服。
来自 ASP.NET MVC 视图的内联脚本:
<script type="text/javascript">
function foo() {
if ($("#checkAll").attr("checked")) {
$(".setColumns").attr("checked", true);
}
else {
$(".setColumns").attr("checked", false);
}
}
</script>