Files
EasySoft-ZenTaoPMS/module/custom/js/mode.js
T
2021-07-16 16:58:36 +08:00

10 lines
228 B
JavaScript

$(function()
{
$('[name=mode]').change(function()
{
var mode = $(this).val();
if(mode == 'new') $('#modeTips').html(newTips);
if(mode == 'classic') $('#modeTips').html(classicTips);
})
})