print('aaa{0!r:.^5.3}aaa'.format('1234567'))
print('aaa{0:5.3f}aaa'.format(12.23))
# '!a' 应用 ascii() ,'!s' 应用 str(),'!r' 应用 repr()
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toHexString(bytes) { | |
return bytes.map(function(byte) { | |
return (byte & 0xFF).toString(16) | |
}).join('') | |
} |
https://www.cnblogs.com/hykun/p/ua.html
var client=function(){
var engine={ //呈现引擎
trident:0,
gecko:0,
webkit:0,
khtml:0,
这个只读属性是一个元素内容高度的度量,包括由于溢出导致的视图中不可见内容。
https://developer.mozilla.org/zh-CN/docs/Web/API/Element/scrollHeight
%a 星期几的简写;如 星期三为Web
%A 星期几的全称;如 星期三为Wednesday
%b 月份的简写; 如4月份为Apr
%B 月份的全称; 如4月份为April
%c 标准的日期的时间串;(如: 04/07/10 10:43:39)
%C 年份的后两位数字
%d 十进制表示的每月的第几天
%D 月/天/年
%e 在两字符域中,十进制表示的每月的第几天