mirror of https://github.com/FanbeiFan/JD-SHOPPER
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
740 B
26 lines
740 B
3 years ago
|
<html>
|
||
|
<head></head>
|
||
|
<body>
|
||
|
<div id="info">获取中……</div>
|
||
|
<hr>
|
||
|
<div id="eid"></div>
|
||
|
<div id="fp"></div>
|
||
|
</body>
|
||
|
</html>
|
||
|
|
||
|
<script src="https://gias.jd.com/js/td.js"></script>
|
||
|
|
||
|
<script>
|
||
|
setTimeout(function () {
|
||
|
try {
|
||
|
getJdEid(function (eid, fp, udfp) {
|
||
|
document.getElementById('info').innerText = '请把下面的内容复制到配置文件 config.ini 中的对应位置';
|
||
|
document.getElementById('eid').innerText = 'eid = ' + eid;
|
||
|
document.getElementById('fp').innerText = 'fp = ' + fp;
|
||
|
});
|
||
|
} catch (e) {
|
||
|
document.getElementById('info').innerText = e;
|
||
|
}
|
||
|
}, 1000);
|
||
|
</script>
|