VIPCard_dir_sel_multi.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:5k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8" %>
  2. <%@ page import="com.redmoon.forum.plugin.entrance.*" %>
  3. <%@ page import="cn.js.fan.module.cms.*" %>
  4. <HTML><HEAD><TITLE>选择节点</TITLE>
  5. <link rel="stylesheet" href="default.css">
  6. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  7. <META content="Microsoft FrontPage 4.0" name=GENERATOR><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <style type="text/css">
  9. <!--
  10. .style1 {
  11. font-size: 12pt;
  12. font-weight: bold;
  13. }
  14. -->
  15. </style>
  16. <script>
  17. var fee = 0;
  18. function func(code, price, chkObj) {
  19. if (chkObj.checked) {
  20. fee += price;
  21. }
  22. else
  23. fee -= price;
  24. spanFee.innerText = fee;
  25. }
  26. function findObj(theObj, theDoc)
  27. {
  28.   var p, i, foundObj;
  29.   
  30.   if(!theDoc) theDoc = document;
  31.   if( (p = theObj.indexOf("?")) > 0 && parent.frames.length)
  32.   {
  33.     theDoc = parent.frames[theObj.substring(p+1)].document;
  34.     theObj = theObj.substring(0,p);
  35.   }
  36.   if(!(foundObj = theDoc[theObj]) && theDoc.all) foundObj = theDoc.all[theObj];
  37.   for (i=0; !foundObj && i < theDoc.forms.length; i++) 
  38.     foundObj = theDoc.forms[i][theObj];
  39.   for(i=0; !foundObj && theDoc.layers && i < theDoc.layers.length; i++) 
  40.     foundObj = findObj(theObj,theDoc.layers[i].document);
  41.   if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
  42.   
  43.   return foundObj;
  44. }
  45. function ShowChild(imgobj, name)
  46. {
  47. var tableobj = findObj("childof"+name);
  48. if (tableobj.style.display=="none")
  49. {
  50. tableobj.style.display = "";
  51. if (imgobj.src.indexOf("i_puls-root-1.gif")!=-1)
  52. imgobj.src = "images/i_puls-root.gif";
  53. if (imgobj.src.indexOf("i_plus-1-1.gif")!=-1)
  54. imgobj.src = "images/i_plus2-2.gif";
  55. if (imgobj.src.indexOf("i_plus-1.gif")!=-1)
  56. imgobj.src = "images/i_plus2-1.gif";
  57. }
  58. else
  59. {
  60. tableobj.style.display = "none";
  61. if (imgobj.src.indexOf("i_puls-root.gif")!=-1)
  62. imgobj.src = "images/i_puls-root-1.gif";
  63. if (imgobj.src.indexOf("i_plus2-2.gif")!=-1)
  64. imgobj.src = "images/i_plus-1-1.gif";
  65. if (imgobj.src.indexOf("i_plus2-1.gif")!=-1)
  66. imgobj.src = "images/i_plus-1.gif";
  67. }
  68. }
  69. function init() {
  70. fee = dialogArguments.getFee();
  71. spanFee.innerText = fee;
  72.    var depts = dialogArguments.getLeaves();
  73.    var ary = depts.split(",");
  74.    for(var i=0; i<form1.elements.length; i++) {
  75.     if (form1.elements[i].type=="checkbox"){
  76. for (var j=0; j<ary.length; j++) {
  77. if (form1.elements[i].name==ary[j]) {
  78. form1.elements[i].checked = true;
  79. break;
  80. }
  81. }
  82.     }
  83.    }
  84. }
  85. function getLeaves(){
  86.    var ary = new Array();
  87.    var j = 0;
  88.    for(var i=0; i<form1.elements.length; i++) {
  89.     if (form1.elements[i].type=="checkbox"){
  90. if (form1.elements[i].checked) {
  91. ary[j] = new Array();
  92. ary[j][0] = form1.elements[i].name;
  93. ary[j][1] = form1.elements[i].value;
  94. j ++;
  95. }
  96.     }
  97.    }
  98.    return ary;
  99. }
  100. function checkAll(isChecked){
  101.    var ary = new Array();
  102.    var j = 0;
  103.    for(var i=0; i<form1.elements.length; i++) {
  104.     if (form1.elements[i].type=="checkbox"){
  105. form1.elements[i].checked = isChecked;
  106.     }
  107.    }
  108.    return ary;
  109. }
  110. function selDepts() {
  111.     dialogArguments.setFee(fee);
  112. window.returnValue = getLeaves();
  113. window.close();
  114. }
  115. function handlerOnClick() {
  116. var obj = window.event.srcElement;
  117. if (obj.type=="checkbox") {
  118. ;
  119. }
  120. }
  121. function window_onload() {
  122. // window.document.body.onclick = handlerOnClick;
  123. init();
  124. }
  125. </script>
  126. </HEAD>
  127. <BODY bgColor=#FBFAF0 leftMargin=4 topMargin=8 rightMargin=0 class=menubar onLoad="window_onload()">
  128. <table width="460" border="0" align="center" cellpadding="0" cellspacing="0" class="tableframe">
  129.   <tr> 
  130.     <td height="24" colspan="2" align="center" background="images/top-right.gif" class="right-title">学习器目录</td>
  131.   </tr>
  132.   <form id="form1" name="form1" method="post">
  133.   <tr> 
  134.     <td width="24" height="87">&nbsp;</td>
  135.     <td width="249">
  136. <%
  137. Directory dir = new Directory();
  138. Leaf lf = dir.getLeaf("teach");
  139. VIPCMSDirectoryView dv = new VIPCMSDirectoryView(lf);
  140. dv.ListFuncWithCheckbox(out, "", "func", "", "");
  141. %></td>
  142.   </tr>
  143.   </form>
  144.   <tr align="center">
  145.     <td height="28" colspan="2">金额总计:<span id="spanFee" name="spanFee"></span></td>
  146.   </tr>
  147.   <tr align="center">
  148.     <td height="28" colspan="2">
  149.       <input type="button" name="okbtn2" value="选择全部" onClick="checkAll(true)">
  150. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  151.       <input type="button" name="okbtn2" value="清除选择" onClick="checkAll(false)">
  152. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  153. <input type="button" name="okbtn" value="确定" onClick="selDepts()">
  154. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
  155.     <input type="button" name="cancelbtn" value="取消" onClick="window.close()">    </td>
  156.   </tr>
  157. </table>
  158. </BODY></HTML>