嗨,我在java脚本中有这个代码,我需要在代码背后的ip值
window.onload = function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "http://www.telize.com/jsonip?callback=DisplayIP";
document.getElementsByTagName("head")[0].appendChild(script);
};
function DisplayIP(response) {
**document.getElementById("ipaddress").innerHTML = "Your IP Address is " + response.ip;**
}
答案 0 :(得分:1)
您可以在JavaScript中设置隐藏字段。在ASP代码中创建一个字段:
<input type="hidden" id="ipHidden" runat="server" />
在您的JavaScript中添加以下内容:
function DisplayIP(response) {
document.getElementById("ipaddress").innerHTML = "Your IP Address is " + response.ip;
document.getElementById("ipHidden").value = response.ip;
}
在C#中:
string clientIP = ipHidden.value;
答案 1 :(得分:1)
您无法在服务器端获取IP字段,因为您的java脚本将在您的代码完成执行后执行。只有当页面完成渲染时才能获得它