Files
EasySoft-ZenTaoPMS/module/doc/js/edit.js
T
2019-02-20 18:01:00 +08:00

19 lines
456 B
JavaScript

$(function()
{
toggleAcl($('input[name="acl"]').val(), 'doc');
$('input[name="type"]').change(function()
{
var type = $(this).val();
if(type == 'text')
{
$('#contentBox').removeClass('hidden');
$('#urlBox').addClass('hidden');
}
else if(type == 'url')
{
$('#contentBox').addClass('hidden');
$('#urlBox').removeClass('hidden');
}
});
})