js代码如下
var e = a.charCodeAt(t).toString(16);这一行不明白
function encode_unicode_param(a) {
for (var s = "", t = 0; t < a.length; t++) {
var e = a.charCodeAt(t).toString(16);
s += 2 == e.length ? "n" + e: e
}
return s
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
python3 下: