Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common.js 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. function randomString() {
  2. len = 8;
  3. let timestamp = new Date().getTime();
  4. /****默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1****/
  5. let $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678';
  6. let maxPos = $chars.length;
  7. let randomStr = '';
  8. for (let i = 0; i < len; i++) {
  9. randomStr += $chars.charAt(Math.floor(Math.random() * maxPos));
  10. }
  11. return timestamp + randomStr;
  12. }
  13. function go(url){
  14. window.location = url;
  15. }
  16. /**
  17. * 格式化数字
  18. * @param num 数字
  19. * @param ext 保留多少位小数
  20. * @returns {*}
  21. */
  22. function number_format(num, ext){
  23. if(ext < 0){
  24. return num;
  25. }
  26. num = Number(num);
  27. if(isNaN(num)){
  28. num = 0;
  29. }
  30. var _str = num.toString();
  31. var _arr = _str.split('.');
  32. var _int = _arr[0];
  33. var _flt = _arr[1];
  34. if(_str.indexOf('.') == -1){
  35. /* 找不到小数点,则添加 */
  36. if(ext == 0){
  37. return _str;
  38. }
  39. var _tmp = '';
  40. for(var i = 0; i < ext; i++){
  41. _tmp += '0';
  42. }
  43. _str = _str + '.' + _tmp;
  44. }else{
  45. if(_flt.length == ext){
  46. return _str;
  47. }
  48. /* 找得到小数点,则截取 */
  49. if(_flt.length > ext){
  50. _str = _str.substr(0, _str.length - (_flt.length - ext));
  51. if(ext == 0){
  52. _str = _int;
  53. }
  54. }else{
  55. for(var i = 0; i < ext - _flt.length; i++){
  56. _str += '0';
  57. }
  58. }
  59. }
  60. return _str;
  61. }
  62. /**
  63. * 设置用户输入数字合法性
  64. * @param name 表单name
  65. * @param min 范围最小值
  66. * @param max 范围最大值
  67. * @param keep 保留多少位小数 可不填
  68. * @param def 不在范围返回的默认值 可不填
  69. */
  70. function checkInputNum(name,min,max,keep,def){
  71. var input = $('input[name='+name+']');
  72. var inputVal = parseInt(input.val());
  73. var a = parseInt(arguments[3]) ? parseInt(arguments[3]) : 0;//设置第四个参数的默认值
  74. var b = parseInt(arguments[4]) ? parseInt(arguments[4]) : '';//设置第四个参数的默认值
  75. if(isNaN(inputVal)){
  76. input.val('');
  77. }else{
  78. if(inputVal < min || inputVal > max){
  79. if(a > 0){
  80. input.val(number_format(b,a));
  81. }else{
  82. input.val(b);
  83. }
  84. }else{
  85. if(a > 0){
  86. input.val(number_format(inputVal, a));
  87. }else{
  88. input.val(inputVal);
  89. }
  90. }
  91. }
  92. }
  93. //图片垂直水平缩放裁切显示
  94. (function($){
  95. $.fn.VMiddleImg = function(options) {
  96. var defaults={
  97. "width":null,
  98. "height":null
  99. };
  100. var opts = $.extend({},defaults,options);
  101. return $(this).each(function() {
  102. var $this = $(this);
  103. var objHeight = $this.height(); //图片高度
  104. var objWidth = $this.width(); //图片宽度
  105. var parentHeight = opts.height||$this.parent().height(); //图片父容器高度
  106. var parentWidth = opts.width||$this.parent().width(); //图片父容器宽度
  107. var ratio = objHeight / objWidth;
  108. if (objHeight > parentHeight && objWidth > parentWidth) {
  109. if (objHeight > objWidth) { //赋值宽高
  110. $this.width(parentWidth);
  111. $this.height(parentWidth * ratio);
  112. } else {
  113. $this.height(parentHeight);
  114. $this.width(parentHeight / ratio);
  115. }
  116. objHeight = $this.height(); //重新获取宽高
  117. objWidth = $this.width();
  118. if (objHeight > objWidth) {
  119. $this.css("top", (parentHeight - objHeight) / 2);
  120. //定义top属性
  121. } else {
  122. //定义left属性
  123. $this.css("left", (parentWidth - objWidth) / 2);
  124. }
  125. }
  126. else {
  127. if (objWidth > parentWidth) {
  128. $this.css("left", (parentWidth - objWidth) / 2);
  129. }
  130. $this.css("top", (parentHeight - objHeight) / 2);
  131. }
  132. });
  133. };
  134. })(jQuery);
  135. function trim(str) {
  136. return (str + '').replace(/(\s+)$/g, '').replace(/^\s+/g, '');
  137. }
  138. /* 显示Ajax表单 */
  139. function ajax_form(id, title, url, width, model)
  140. {
  141. if (!width) width = 480;
  142. if (!model) model = 1;
  143. var d = DialogManager.create(id);
  144. d.setTitle(title);
  145. d.setContents('ajax', url);
  146. d.setWidth(width);
  147. d.show('center',model);
  148. return d;
  149. }
  150. //显示一个内容为自定义HTML内容的消息
  151. function html_form(id, title, _html, width, model) {
  152. if (!width) width = 480;
  153. if (!model) model = 0;
  154. var d = DialogManager.create(id);
  155. d.setTitle(title);
  156. d.setContents(_html);
  157. d.setWidth(width);
  158. d.show('center',model);
  159. return d;
  160. }
  161. /*
  162. * 为低版本IE添加placeholder效果
  163. *
  164. * 使用范例:
  165. * [html]
  166. * <input id="captcha" name="captcha" type="text" placeholder="验证码" value="" >
  167. * [javascrpt]
  168. * $("#captcha").nc_placeholder();
  169. *
  170. * 生效后提交表单时,placeholder的内容会被提交到服务器,提交前需要把值清空
  171. * 范例:
  172. * $('[data-placeholder="placeholder"]').val("");
  173. * $("#form").submit();
  174. *
  175. */
  176. (function($) {
  177. $.fn.nc_placeholder = function() {
  178. var isPlaceholder = 'placeholder' in document.createElement('input');
  179. return this.each(function() {
  180. if(!isPlaceholder) {
  181. $el = $(this);
  182. $el.focus(function() {
  183. if($el.attr("placeholder") === $el.val()) {
  184. $el.val("");
  185. $el.attr("data-placeholder", "");
  186. }
  187. }).blur(function() {
  188. if($el.val() === "") {
  189. $el.val($el.attr("placeholder"));
  190. $el.attr("data-placeholder", "placeholder");
  191. }
  192. }).blur();
  193. }
  194. });
  195. };
  196. })(jQuery);
  197. function setCookie(name,value,days){
  198. var exp=new Date();
  199. exp.setTime(exp.getTime() + days*24*60*60*1000);
  200. var arr=document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
  201. document.cookie=name+"="+escape(value)+";expires="+exp.toGMTString() +"path=/";
  202. }
  203. function getCookie(name){
  204. var arr=document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
  205. if(arr != null){
  206. return unescape(arr[2]);
  207. }
  208. return null;
  209. }
  210. function delCookie(name){
  211. var exp=new Date();
  212. exp.setTime(exp.getTime()-1);
  213. var cval=getCookie(name);
  214. if(cval!=null){
  215. document.cookie=name+"="+cval+";expires="+exp.toGMTString() +"path=/";
  216. }
  217. }