[js常用]将秒转化为时分秒
2018-12-12 09:25:10来源:博客园 阅读 ()
内容引入至网络
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>秒转换为时分秒</title> <script src="http://code.jquery.com/jquery-1.11.2.js"></script> </head> <body> <input type="text" id="demo1">s <button id="btn">转换</button> <input type="text" id="demo2">或 <input type="text" id="demo3"> <script language="javascript"> /** * 将秒数换成时分秒格式 */ function formatSeconds(value) { var theTime = parseInt(value);// 秒 var theTime1 = 0;// 分 var theTime2 = 0;// 小时 if(theTime > 60) { theTime1 = parseInt(theTime/60); theTime = parseInt(theTime%60); if(theTime1 > 60) { theTime2 = parseInt(theTime1/60); theTime1 = parseInt(theTime1%60); } } var result = ""+parseInt(theTime)+"秒"; if(theTime1 > 0) { result = ""+parseInt(theTime1)+"分"+result; } if(theTime2 > 0) { result = ""+parseInt(theTime2)+"小时"+result; } return result; } function formatSeconds2(a) { var hh = parseInt(a/3600); if(hh<10) hh = "0" + hh; var mm = parseInt((a-hh*3600)/60); if(mm<10) mm = "0" + mm; var ss = parseInt((a-hh*3600)%60); if(ss<10) ss = "0" + ss; var length = hh + ":" + mm + ":" + ss; if(a>0){ return length; }else{ return "NaN"; } } </script> <script> $("#btn").on( "click", function( event ) { var x = $("#demo1").val(); var y = formatSeconds(x); $("#demo2").val(y); $("#demo3").val(formatSeconds2(x)); }); </script> </body> </html>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:vue 日期时间过滤器
- javascript 中关于array的常用方法详解 2020-03-16
- JS实现标签页切换效果 2020-03-12
- javascript的常用方法 2020-03-08
- javascript数组常用的方法 2019-12-18
- 总结js常用数组的操作方法 2019-12-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash