摘要:
ibm-rsmbmosquitto 阅读全文
摘要:
function f(ele){ // alert(ele.eventId);// 这个只能在 IE中可用 // 下面这两种方法在IE,FireFox和Chrome中都能用,都可以 alert(ele.attributes['eventId'].nodeValue); alert(ele.getAttribute('eventId')); // 总结,对于HTML元素,标准中规定的属性可以 ele.attributeName // 的方法去获取其值;用户自定义的(自动放到页面元素中的)属... 阅读全文
摘要:
-webkit-transition: 3s ease;-webkit-transform: translateX(-95%);有这两句就能做GPU加速动画了 阅读全文
摘要:
mysql没有像oracle数据中那样有to_date方法。mysql中实现日期格式化的方法为date_to_str('日期字符串','日期格式'),而且mysql中的日期格式的写法和oracle也不同。mysql日期和字符相互转换方法date_format(date,'%Y-%m-%d') -------------->oracle中的to_char();str_to_date(date,'%Y-%m-%d') -------------->oracle中的to_date();mysql中用法为:str_to_dat 阅读全文
摘要:
create database link WCFK1.REGRESS.RDBMS.DEV.US.ORACLE.COM connect to WCFK using '172.16.17.227/orcl';Create database link select * from TA_SP_EXC_BASEINFO@WCFK1调用 阅读全文