网站地图    收藏   

主页 > 后端 > ecshop教程 >

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

来源:自学PHP网    时间:2014-11-28 23:31 作者: 阅读:

[导读] 1、修改WAP模版文件 buy html(在wap templates里面),在 buy html 文件中的 head 上面添加JS代码: scriptscripttype=text javascriptfunctiondoValidate(){varmobileReg= ^[1]([3][0-...

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

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()"> 然后保存,上传到相应文件夹就可以了.

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论