zentaopms/extension/max/cmcl/view/create.cmmi.html.hook.php
2023-05-16 10:50:42 +08:00

21 lines
472 B
PHP

<script>
$(function()
{
$('#type').change(function()
{
var typeID = $(this).val();
if(typeID)
{
var link = createLink('cmcl', 'ajaxGetTitle', 'typeID='+typeID);
$.post(link, function(data)
{
$('#title').closest('tr').remove();
$('#type').closest('tr').after(data);
$('#title').chosen();
})
}
});
$('#type').change();
})
</script>