Files
EasySoft-ZenTaoPMS/module/program/js/pgmcreate.js
2020-11-13 11:38:22 +08:00

28 lines
499 B
JavaScript

$(function()
{
$('#parent').change();
$('#longTime').change(function()
{
if($(this).prop('checked'))
{
$('#end').attr('disabled', 'disabled');
}
else
{
$('#end').removeAttr('disabled');
}
});
})
function setAclList(programID)
{
if(programID != 0)
{
$('.aclBox').html($('#subPGMAcl').html());
}
else
{
$('.aclBox').html($('#PGMAcl').html());
}
}