标签: javascript jquery html node.js
在下面的代码中,我可以从a.html页面获取'ip'值。现在我想使用node.js将此ip值发送到b.html页面的文本框字段。
我的app.js:
var ip; app.post('/retrieve',function(req, res, next){ ip = req.body.client_ip; console.log(ip); });
我怎样才能做到这一点。任何人都可以就此问题提出建议......