你这个问题还没解决??
其实不难……
用ajax就可以实现
html:
js:
//创建一个ajax对象,发get请求到后端,去到数据,然后将上面的文本框填充
var xhr = new XMLHttpRequest();
xhr.open("get","你的后端url",true);
xhr.onreadystatechange = function()
{
if (xhr.readyState == 4 && xhr.status == 200)
{
document.getElementById("t").value = xhr.responseText;
}
}
xhr.send(null);
C:
起一个服务,响应前端发送的那个请求,然后返回数字
zhizji