/** * * 正则表达式集合 * */ /** * 验证http网址,并且不能有javascript后缀 */ export const URL_REGEXP = /^(https?:\/\/)((?!\.).)+((?!javascript).)*$/i