﻿function checkInput()
{
 if($.trim($("#from").val()).length==0)
    {
    alert('发布者不可为空');
        $("#from").focus();
        return false;
    }
     if($.trim($("#title").val()).length==0)
    {
    alert('标题不可为空');
        $("#title").focus();
        return false;
    }
     if($.trim($("#txtContent").val()).length==0)
    {
    alert('内容不可为空');
        $("#txtContent").focus();
        return false;
    }
     if($.trim($("#vdcode").val()).length==0)
    {
    alert('验证码不可为空');
        $("#vdcode").focus();
        return false;
    }
    return true;
}
