1、js数组索引添加值
图片.png
2、js函数parseInt(转16进制
图片.png
py版本
def parseInt_16(x):
a = '1234567890abcdef'
if x[0] not in a:
return 'NaN'
if x[1] not in a:
x = x[0]
return int(x, 16)
1、js数组索引添加值
2、js函数parseInt(转16进制
def parseInt_16(x):
a = '1234567890abcdef'
if x[0] not in a:
return 'NaN'
if x[1] not in a:
x = x[0]
return int(x, 16)
本文标题:js的骚操作
本文链接:https://www.haomeiwen.com/subject/shpswktx.html
网友评论