cgformSynChoice.jsp 1008 B

12345678910111213141516171819202122232425262728
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <SCRIPT type=text/javascript src="plug-in/clipboard/ZeroClipboard.js"></SCRIPT>
  4. <t:base type="jquery,easyui,jqueryui-sortable,tools"></t:base>
  5. <!-- update--begin--author:zhangjiaqiang date:20170526 for:TASK #2008 【样式改进】同步数据库下面这个去掉 -->
  6. <style>
  7. <!--
  8. body{
  9. overflow: hidden;
  10. }
  11. -->
  12. </style>
  13. <!-- update--end--author:zhangjiaqiang date:20170526 for:TASK #2008 【样式改进】同步数据库下面这个去掉 -->
  14. <div>
  15. <div><input type='radio' name='synMethod' value='normal' checked><t:mutiLang langKey="normal.sync"/></div>
  16. <div><input type='radio' name='synMethod' value='force'><t:mutiLang langKey="force.sync"/></div>
  17. </div>
  18. <SCRIPT type="text/javascript">
  19. function getSynChoice(){
  20. var synchoice;
  21. $("[name='synMethod']").each(function(){
  22. if($(this).attr("checked")){
  23. synchoice = $(this).val();
  24. }
  25. });
  26. return synchoice;
  27. }
  28. </SCRIPT>