摘要:
导入 <link rel="stylesheet" type="text/css" href="DataTables-1.10.12/media/css/jquery.dataTables.css"> <scripttype="text/javascript"charset="utf8"src="D 阅读全文
摘要:
如何更新单个数据 example = User.objects.get(id=1) example.is_acitve=1 example.save() 如何更新多个数据 examples = User.objects.filter(is_staff=1).update(is_superuser=1 阅读全文
摘要:
让checkbox全选 $("#checkall").click(function(){ $("input[name='checklist']").prop("checked", $(this).prop("checked")) }) 顺便说下attr和prop区别,使用html固有属性时使用pro 阅读全文