현재시간 초단위

현재시간 초단위

QA

현재시간 초단위

본문

안녕하세요. 아래처럼 시간을 나오게 하고 싶습니다.

 

초가 계속 카운트 되면서요...

 

초가 바뀌면서 페이지에서 보여지는걸 어떻게 해야하나여?

 

https://search.naver.com/search.naver?where=nexearch&query=%ED%98%84%EC%9E%AC%EC%8B%9C%EA%B0%84+%EC%B4%88%EB%8B%A8%EC%9C%84&ie=utf8&sm=tab_she&qdt=0

이 질문에 댓글 쓰기 :

답변 3

https://bbaksae.tistory.com/23

아래와 같이 적용해보세요.
초단위는 실시간 으로 처리됩니다.

 


<!-- 시간/분/초 -->
<script> 
    var now = new Date(<?php echo time(); ?>*1000);
    Number.prototype.zf = function(){return (this > 9 ? '' : '0') + this;}; 
    function startTime() { 
        now.setSeconds(now.getSeconds() + 1);
        var h = now.getHours().zf(), m = now.getMinutes().zf(), s = now.getSeconds().zf();
        document.getElementById('time').innerHTML = h + ':' + m + ':' + s;
        setTimeout('startTime()',1000);
    }
</script>
<!-- 시간/분/초 -->
<!-- 현재날짜 -->
<?php
    $today = date("Y.m.d");
    $todays = explode('.',$today);
    $year = $todays[0]; //년도
    $month = $todays[1];//달
    $day = $todays[2];//일
?>
<!-- 현재날짜 -->

 

 

출력 하고자 하는 자리에 

 


<?php echo $today; ?> <span id="time"></span>
// $today 년.월.일 출력,  id="time" 시간:분:초 출력

 

 

예시 출력화면

1754226447_1559711983.992.png

 

 

댓글 감사합니다. 그런데 제대로 작동이 안되고 있습니다.ㅎ
알려주신대로 해보았으나 초가 바뀌질 않습니다. 윗분처럼 초가 변경되는게 보여야하는데..

이걸 빼먹었네요

<body>에 onload="startTime()" 추가해주세요~

완성 코드는 아래와 같습니다.

 

http://cloud.wckorea.gethompy.com/222.php

 


<body onload="startTime()">
<script> 
    var now = new Date(<?php echo time(); ?>*1000);
    Number.prototype.zf = function(){return (this > 9 ? '' : '0') + this;}; 
    function startTime() { 
        now.setSeconds(now.getSeconds() + 1);
        var h = now.getHours().zf(), m = now.getMinutes().zf(), s = now.getSeconds().zf();
        document.getElementById('time').innerHTML = h + ':' + m + ':' + s;
        setTimeout('startTime()',1000);
    }
</script>
<?php
    $today = date("Y.m.d");
?>

<?php echo $today; ?> <span id="time"></span>
</body>
답변을 작성하시기 전에 로그인 해주세요.
전체 123,163 | RSS
QA 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1404호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT