-
在js中Math.round(2.155*100)/100为什么等于2.15而不等于2.16?
在JavaScript中,Math.round(2.155*100)/100 等于 2.15 而不是 2.16 的原因是由于浮点数的精度问题。当你将 2.155 乘以 100,实际上得到的结果是 215.49999999999998,然后对它进行四舍五入到最接近的整数,结果是 215,再除以&nbs… -
JS判断当前是http还是https
JavaScript的document对象中有一个location的子对象,其包括是属性如下:document.location.host//表示当前域名+端口号document.location.hostname//表示域名document.location.href//表示完整的URLdocument.location.port//表示端口号document.location.protocol… -
js 字符串与16进制互转
functionstrToUtf8Bytes(str){constutf8=[];for(letii=0;ii>12),0x80|((charCode>>6)&0x3f),0x80|(charCode&0x3f));}else{ii++;charCode=0x10000+(((charCode&0x3ff)18),0x80|((charCode>>12)&0x3f),0x80|((charCode…