如何去掉ecshop电话只能输入数字的**

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

ecshop默认只能输入数字类型的电话,那么如何取消此种**呢?
找到js/shopping_flow.js 文件,打开。

改为只判断是否为空就可以了
if (frm.elements['zipcode'] && Utils.isEmpty(frm.elements['zipcode'].value))
{
err = true;
msg.push(”Please Enter zip/post code!”);
}
http://guizu89.com
bailm16.com
duwyul89.com

同样,国外有些用户习惯在电话里加(),比如(010)-0335-8670
也可以用上面的方法解决。
if (frm.elements['tel'] && Utils.isEmpty(frm.elements['tel'].value))
{
err = true;
msg.push(tele_not_null);

}