1.输出语句:document.write("");2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5 ...
分类:
Web程序 时间:
2017-09-25 11:43:54
阅读次数:
210
-- 当前日期 SELECT TO_CHAR(ADD_MONTHS(SYSDATE, 0), 'yyyy-MM-dd') PRETODAY FROM DUAL -- 上月当前日期 SELECT TO_CHAR(ADD_MONTHS(SYSDATE, -1), 'yyyy-MM-dd') PRETOD ...
分类:
数据库 时间:
2017-09-23 10:48:58
阅读次数:
208
1 //昨天: 2 const yestoday = new Date().getTime() - 24*60*60*1000; 3 4 //今天: 5 const today = new Date(); 6 7 //明天: 8 const tomorrow = new Date().getTime... ...
分类:
Web程序 时间:
2017-09-21 21:16:19
阅读次数:
179
What is your definition of a DBA? 你对DBA的定义是什么? Today we have a guest(特邀的) editorial(社论)as Steve is traveling to the UK. 今天我们有一篇特邀社论是Steve游历英国。 OK,I kn ...
分类:
数据库 时间:
2017-09-18 00:24:04
阅读次数:
270
python版本3.5 1.datetime包导入方式 datetime包导入有两种方式(新人注意): 第一种:import datetime # 导入时间日期 >>>获取当前时间:now = datetime.datetime.now() 2017-09-15 11:29:21.796463 >> ...
分类:
编程语言 时间:
2017-09-15 16:50:35
阅读次数:
240
1、String 转 int 2、String 转 Integer 3、int 转 String 4、int 转 Integer 5、Integer 转 String 6、Integer 转 int 7、String 转 char 8、char 转 String 9、日期 10、JAVA数据类型转换 ...
分类:
编程语言 时间:
2017-09-13 00:34:12
阅读次数:
183
结构作为参数的函数 直接来个简单的例子吧: 问题:用户输入今天的日期,输出明天的日期。 提示:闰年,每个月最后一天, 代码: #include <stdio.h>#include <stdbool.h>/* 根据今天的日期算出明天的日期。*/ //结构体放在函数外侧,相当于一个全局变量,所有的函数都 ...
分类:
编程语言 时间:
2017-09-11 00:53:16
阅读次数:
232
Look to this day! For it is life,the vary life of life. In its brief course. Lie all the verities realities of your existence: The bliss of growth The ...
分类:
其他好文 时间:
2017-09-10 23:50:11
阅读次数:
184
await 是 async wait 的简写, 是 generator 函数的语法糖。 async 函数的特点: async 声明一个方法是异步的,await 则等待这个异步方法执行的完成 await 只能出现在 async 函数中, 用在 async 外或者普通函数内都会报错 async函数返回一 ...
分类:
其他好文 时间:
2017-09-08 18:15:40
阅读次数:
155
Helen works in Metropolis airport. She is responsible for creating a departure schedule. There are n flights that must depart today, the i-th of them ...
分类:
其他好文 时间:
2017-09-08 12:03:45
阅读次数:
255