Heim  >  Artikel  >  Web-Frontend  >  Informationen zur Implementierung der JS-Effektfunktion

Informationen zur Implementierung der JS-Effektfunktion

不言
不言Original
2018-07-09 17:15:171625Durchsuche

这篇文章主要介绍了关于关于JS效果功能的实现,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

平台实时监控平台,统计报错数

window.onerror = function(a,b,c,d,e){
	(new Image).src = '/m?p=${location.href}&a=${a}&b=${b}&c=${c}&d=${d}&e=${e.statck}'
}

Linux 打印日志输出

tail -f access.log | awk '/m/{c++; print c,$0} {}'

获取当前时间   YY-mm-dd HH:ii:ss

function curentTime(){ 
    var now = new Date();
    var year = now.getFullYear();
    var month = now.getMonth() + 1;
    var day = now.getDate();
    var hh = now.getHours();
    var mm = now.getMinutes();
    var ss = now.getSeconds();

    var clock = year + "-";
    if(month < 10) clock += "0";
    clock += month + "-";
   
    if(day < 10) clock += "0";
    clock += day + " ";
   
    if(hh < 10) clock += "0";  
    clock += hh + ":";

    if (mm < 10) clock += &#39;0&#39;; 
    clock += mm + ":";

    if (ss < 10) clock += &#39;0&#39;; 
    clock += ss; 

    return(clock);

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网! 

 相关推荐:

js数组随机排序的方法

Node.js使用superagent模拟GET/POST的请求

Das obige ist der detaillierte Inhalt vonInformationen zur Implementierung der JS-Effektfunktion. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn