当前位置:首页 > CMS教程 > ecshop > 列表

ECshop WAP手机版本购物流程调用JS验证手机号码格式的方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-19 10:00:55 浏览: 评论:0 

1、修改WAP模版文件 buy.html(在wap/templates里面),在 buy.html 文件中的 </head> 上面添加JS代码:

  1. </script> 
  2. <script type="text/javascript"
  3. function doValidate() { 
  4. var mobileReg = /^[1]([3][0-9]{1}|50|53|59|58|56|86|80|89|87|88|85|86|55|51|52|57)[0-9]{8}$/; 
  5. if(!mobileReg.test(document.theForm.mobile.value)) { 
  6. alert('请填写正确手机号码!'); 
  7. document.theForm.mobile.focus(); 
  8. return false
  9. return true
  10. </script> 

2、修改WAP模版文件 buy.html,在 buy.html 文件中 搜索 <form action="order.php?act=order_lise" method="post" name="theForm">,把这一句修改成 <form action="order.php?act=order_lise" method="post" name="theForm" id="theForm" onsubmit="return doValidate()"> 然后保存,上传到相应文件夹就可以了.

Tags: WAP手机版购物 JS验证手机号码

分享到: