码迷,mamicode.com
首页 >  
搜索关键字:one    ( 27922个结果
定时器
var timer = setInterval(function () { if (countdown <= 0) { clearInterval(timer); $("#yzmdm").css('display','none'); $("#validationCode").css('display ...
分类:其他好文   时间:2020-08-11 17:29:35    阅读次数:58
Golang | 既是接口又是类型,interface是什么神仙用法?
本文始发于个人公众号:TechFlow,原创不易,求个关注 今天是golang专题的第12篇文章,我们来继续聊聊interface的使用。 在上一篇文章当中我们介绍了面向对象的一些基本概念,以及golang当中interface和多态的实现方法。今天我们继续来介绍interface当中其他的一些方法 ...
分类:其他好文   时间:2020-08-11 11:54:42    阅读次数:80
CSS的背景
CSS的背景 1. 背景颜色background-color div { background-color: 颜色值; } 一般情况下元素背景颜色默认是transparent(透明)。 2. 背景图片background-image div { background-image: none或url( ...
分类:Web程序   时间:2020-08-08 20:09:25    阅读次数:83
Layui多行表头导致多出空白内容处理方法
在done函数内加上以下代码即可: $(".layui-table-body").find("td").each(function (index, element) { if ($(this).attr("data-field") > 0) { $(this).css("display", "non ...
分类:其他好文   时间:2020-08-08 09:24:31    阅读次数:178
Flutter 生成.g.dart文件
https://caijinglong.github.io/json2dart/index.html 这个网站可以自动将json文件转成json_serializable所需要的格式,新建并复制成***.dart文件,通过在terminal内输入下面代码,自动生成.g.dart文件 flutter ...
分类:其他好文   时间:2020-08-06 15:37:02    阅读次数:125
Web前端初学者应该学习哪些技能?
作为web前端初学者,学习前端都是很茫然,无从下手不知道改从哪学起,其实总统的概况成为几大内容,要有规划的去学习前端
分类:Web程序   时间:2020-08-06 11:58:29    阅读次数:91
货币 元 转换为 分
``````/货币元转换为分*/publicstaticLongformatMoney(Strings){if(s.contains(".")){intindex=s.indexOf(".");Stringsub1=s.substring(0,index);Stringsub2=s.substring(index+1);if(sub2.length()>
分类:其他好文   时间:2020-08-05 16:56:47    阅读次数:81
基础排序算法总览
简单介绍和实现基础的排序算法:冒泡排序、插入排序、选择排序、归并排序、快速排序 ...
分类:编程语言   时间:2020-08-05 10:40:42    阅读次数:81
27922条   上一页 1 ... 63 64 65 66 67 ... 2793 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!