function _search(string) {
    // 补全代码
     return /\d/.test(string);
    //if(string.match(/\d/)) 
     //   return true;
    //else return false;
}