Files
EasySoft-ZenTaoPMS/module/install/js/step5.js
T
2022-04-28 11:02:38 +08:00

22 lines
464 B
JavaScript

$(function()
{
$('#submit').click(function()
{
if($('#company').val().length == 0)
{
alert(errorEmpty.company);
return false;
}
else if($('#account').val().length == 0)
{
alert(errorEmpty.account);
return false;
}
else if($('#password').val().length == 0)
{
alert(errorEmpty.password);
return false;
}
})
})