func.js
上传用户:xxtaishan
上传日期:2022-01-02
资源大小:4063k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

ASP/ASPX

  1. //判断字符由字母和数字组成
  2. function isLetterNum(data){
  3.  var re=/^[A-Za-z0-9]+$/;
  4.  return re.test(data);
  5. }
  6. function formchk(str,msg)
  7. {
  8. if(str.value == '')
  9. {
  10. alert(msg);
  11. return false;
  12. }
  13. return true;
  14. }
  15. function formchk_detail(str,msg)
  16. {
  17. if(str)
  18. {
  19. alert(msg);
  20. return false;
  21. }
  22. return true;
  23. }
  24. function Rad(FR,Qstr){
  25. var RL;
  26. RL=FR.length;
  27. if(RL==undefined)
  28. {
  29. FR.checked=true;
  30. }
  31. else
  32. {
  33. for(var i=0;i<RL;i++)
  34. {
  35. if(FR[i].value==Qstr)
  36. {
  37. FR[i].checked=true;
  38. }
  39. }
  40. }
  41. }
  42. function report(str,rsv)
  43. {
  44. var the_select = str;
  45. for (loop=0; loop < the_select.options.length; loop++)
  46. {
  47. if (the_select.options[loop].text == rsv)
  48. {
  49. the_select.options[loop].selected = true;
  50. }
  51. }
  52. function ClassSelect(str,rsv)
  53. {
  54. var the_select = str;
  55. for (loop=0; loop < the_select.options.length; loop++)
  56. {
  57. if (the_select.options[loop].value == rsv)
  58. {
  59. the_select.options[loop].selected = true;
  60. }
  61. }