verify.js
上传用户:yunfeng252
上传日期:2022-07-23
资源大小:12403k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. function AdminListMenuShow() {
  2. var select = document.getElementById("GuComm").value;
  3. if (select == "CommSortAsSort") {
  4. document.getElementById("Admin_List_Sort").style.display = "";
  5. document.getElementById("Admin_List_AsSort").style.display = "";
  6. document.getElementById("Admin_List_Ar_DateTime").style.display = "none";
  7. document.getElementById("Admin_List_Ar_Commend").style.display = "none";
  8. } else {
  9. if (select == "CommDateTime") {
  10. document.getElementById("Admin_List_Ar_DateTime").style.display = "";
  11. document.getElementById("Admin_List_Sort").style.display = "none";
  12. document.getElementById("Admin_List_AsSort").style.display = "none";
  13. document.getElementById("Admin_List_Ar_Commend").style.display = "none";
  14. } else {
  15. if (select == "CommCommend") {
  16. document.getElementById("Admin_List_Ar_Commend").style.display = "";
  17. document.getElementById("Admin_List_Ar_DateTime").style.display = "none";
  18. document.getElementById("Admin_List_Sort").style.display = "none";
  19. document.getElementById("Admin_List_AsSort").style.display = "none";
  20. } else {
  21. document.getElementById("Admin_List_Sort").style.display = "none";
  22. document.getElementById("Admin_List_AsSort").style.display = "none";
  23. document.getElementById("Admin_List_Ar_DateTime").style.display = "none";
  24. document.getElementById("Admin_List_Ar_Commend").style.display = "none";
  25. }
  26. }
  27. }
  28. }
  29. function Sort_Select() {
  30. $.get("AjaxServlet?sort_id=" + $("#SortID_Select").val(), null, function (data) {
  31. $("#Admin_List_AsSort").html(data);
  32. });
  33. }
  34. function Admin_List_Check() {
  35. var count = 0;
  36. for (var i = 0; i < document.Admin_List.GuResourceID.length; i++) {
  37. if (document.Admin_List.GuResourceID[i].checked == false) {
  38. count++;
  39. }
  40. }
  41. if (count == document.Admin_List.GuResourceID.length || document.getElementById("GuComm").value == "") {
  42. document.getElementById("GuComm").focus();
  43. return false;
  44. } else {
  45. return true;
  46. }
  47. }
  48. function Admin_Type_Show() {
  49. document.getElementById("Admin_List_Sort").style.display = "none";
  50. document.getElementById("Admin_List_AsSort").style.display = "none";
  51. document.getElementById("Admin_List_Ar_DateTime").style.display = "none";
  52. document.getElementById("Admin_List_Ar_Commend").style.display = "none";
  53. }