function shipingzhongcustomfour_menu() {
  $items['getbaomingjax'] = array(
    'page callback' => 'shipingzhongcustomfour_get_baoming_ajax',
    'type' => MENU_CALLBACK,
    'access arguments' => array('view field_wsbm_addr'),//查上网上报名地址的权限
  );
  return $items;
}
//MENU_CALLBACK 是一种菜单类型
drupal模块中的hook格式为<module>_<hookname>,比如说hook_menu在你自己开发的..
.同时type为MENU_CALLBACK表示这里只是定义了一个页面路径而不需要在页面上显示该...