easyui验证坐标正则

前端之家收集整理的这篇文章主要介绍了easyui验证坐标正则前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
    coordinate:{
        validator: function (value) {
            return /^[-]?(\d|([1-9]\d)|(1[0-7]\d)|(180))(\.\d*),[-]?(\d|([1-8]\d)|(90))(\.\d*)?$/.test(value);

        },message: '坐标格式不正确'
    }
坐标格式:116.39852,39.936625 原文链接:https://www.f2er.com/regex/362136.html

猜你在找的正则表达式相关文章