$.extend({
    'ClearInput':function(){//函数名
        $('input').each(function(){//遍历
          if($(this).val()=="1900"){//判断为1900
              $(this).val("");//替换
          }
      })
    })
})$.ClearInput();