# & 等特殊字符会导致 post 传参失败
处理方法使用 encodeURIComponent 将字符串转化一下
实例
// toUpperCase() 转化为大写字母 var catecolor = "#00FFFF"; var catecolor = encodeURIComponent(catecolor.toUpperCase());