1、首先,登录京东联盟官网,在“开发者中心”中申请开发者账号,获取AppKey和AppSecret。
2、使用Node.js安装京东联盟API SDK,使用npm install jdunion-sdk命令安装。
3、在Node.js程序中引入SDK,并初始化SDK,传入AppKey和AppSecret,获取接口调用凭证。
4、调用API接口,传入参数,获取响应结果。
<!doctype html><html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.progress {
width: 500px
height: 40px
border: 1px solid #eeeeee
overflow: hidden
margin: 20% auto
}
input {
width: 150px
}
.progress span{
height: 40px
background-color: red
display: block
width: 0
line-height: 40px
text-align: right
}
</style>
</head>
<body>
<input type="number" min="0" max="100" id="input">
<div class="progress">
<span></span>
</div>
<script>
~function (document) {
var input = document.getElementById('input')
var progress = document.getElementsByClassName('progress')[0]
var span = progress.getElementsByTagName('span')[0]
input.addEventListener('input', function () {
span.style.width = span.textContent = this.value + '%'
}, false)
}(document)
</script>
</body>
</html>