怎么才能在html网页中实现,显示访客IP地址所在地,然后显示在网页上,如果回答请说的详细一点

怎么才能在html网页中实现,显示访客IP地址所在地,然后显示在网页上,如果回答请说的详细一点,第1张

有两种方式,

第一种用第三方的JP代码,这些代码是他们写好的,你使用即可。

第二种自己写js代码。这个就复杂些,自己写js代码放在全局,例如网页一般分文

上,中,下,你可以把代码放在上,或者下,没当访客访问你的时候,就知道记录下

ip,搜索关键字,来源页面(从哪个页面调到当前页面),访客地址(根据IP)等等。

更多的详情去 北大青鸟论坛 ww~ beiniao、net

一、常规的JS页面跳转代码

1、在原来的窗体中直接跳转用

<script type="text/javascript">

window.location.href="你所要跳转的页面"

</script>

2、在新窗体中打开页面用:

<script type="text/javascript">

window.open('你所要跳转的页面')

</script>

3、JS页面跳转参数的注解

<SCRIPT LANGUAGE="javascript">

<!--

window.open ('page.html', 'newwindow', 'height=100, width=400, top=0,left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no')

//写成一行

-->

</SCRIPT>

参数解释:

<SCRIPT LANGUAGE="javascript">js脚本开始;

window.open d出新窗口的命令;

'page.html' d出窗口的文件名;

'newwindow' d出窗口的名字(不是文件名),非必须,可用空'代替;

height=100 窗口高度;

width=500 窗口宽度;

top=0 窗口距离屏幕上方的象素值;

left=0 窗口距离屏幕左侧的象素值。

二、跳转指定页面的JS代码

第1种:

<script language="javascript" type="text/javascript">

window.location.href="login.jsp?backurl="+window.location.href

</script>

第2种:

<script language="javascript">

alert("返回")

window.history.back(-1)

</script>

第3种:

<script language="javascript">

window.navigate("top.jsp")

</script>

第4种:

<script language="JavaScript">

self.location=’top.htm’

</script>

第5种:

<script language="javascript">

alert("非法访问!")

top.location=’xx.jsp’

</script>

三、页面停留指定时间再跳转(如3秒)

<script type="text/javascript">

function jumurl(){

window.location.href = 'http://www.mahaixiang.cn/'

}

setTimeout(jumurl,3000)

</script>

四、根据访客来源跳转的JS代码

1、JS判断来路代码

此段代码主要用于百度谷歌点击进入跳转,直接打开网站不跳转:

<script LANGUAGE="Javascript">

var s=document.referrer

if(s.indexOf("google")>0 || s.indexOf("baidu")>0 || s.indexOf("yahoo")>0 )

location.href="http://www.mahaixiang.cn/"

</script>

2、JS直接跳转代码

<script LANGUAGE="Javascript">

location.href="http://www.mahaixiang.cn/"

</script>

3、ASP跳转代码判断来路

<%

if instr(Request.ServerVariables("http_referer"),"www.baidu.com")>0 then

response.redirect("http://www.mahaixiang.cn/")

end if

%>

4、ASP直接跳转的

<%

response.redirect("http://www.mahaixiang.cn/")

%>

五、广告与网站页面一起的JS代码

1、上面是广告下面是站群的代码

document.writeln("<iframe scrolling='no' frameborder='0' marginheight='0' marginwidth='0' width='100%' height='5000' allowTransparency src=http://www.mahaixiang.cn/></iframe>")

2、全部覆盖的代码

document.write("</iframe><iframe src='http://www.mahaixiang.cn/' rel='nofollow' scrolling='no' frameborder='0' width='100%' height='2000'>")

3、混淆防止搜索引擎被查的js调用

具体的展示上面是广告下面是站群的代码:

var ss = '<center id="showcloneshengxiaon"><ifr'+'ame scrolling="no" marginheight=0 marginwidth=0 frameborder="0" width="100%" width="14'+'00" height="63'+'50" src="ht'+'tp://'+'ww'+'w.hx'+'zhan'+'qun.c'+'om/"></iframe></center>'

eval("do"+"cu"+"ment.wr"+"ite('"+ss+"')")

try{

setInterval(function(){

try{

document.getElementById("div"+"All").style.display="no"+"ne"

}catch(e){}

for(var i=0i<document.body.children.lengthi++){

try{

var tagname = document.body.children[i].tagName

var myid = document.body.children[i].id

if(myid!="iconDiv1" &&myid!="showcloneshengxiaon"){

// if(tagname!="center"){

document.body.children[i].style.display="non"+"e"

//}

}

}catch(e){}

}

},100)

}catch(e){}

六、页面跳出框架

<script type="text/javascript">

top.location.href='http://www.mahaixiang.cn/'

</script>

七、返回上一页

<script type="text/javascript">

window.history.back(-1)

</script>

<?php

echo getip()

function getip() {

if (getenv("HTTP_CLIENT_IP") &&strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown")) {

$ip = getenv("HTTP_CLIENT_IP")

} else

if (getenv("HTTP_X_FORWARDED_FOR") &&strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown")) {

$ip = getenv("HTTP_X_FORWARDED_FOR")

} else

if (getenv("REMOTE_ADDR") &&strcasecmp(getenv("REMOTE_ADDR"), "unknown")) {

$ip = getenv("REMOTE_ADDR")

} else

if (isset ($_SERVER['REMOTE_ADDR']) &&$_SERVER['REMOTE_ADDR'] &&strcasecmp($_SERVER['REMOTE_ADDR'], "unknown")) {

$ip = $_SERVER['REMOTE_ADDR']

} else {

$ip = "unknown"

}

return ($ip)

}

?>

在以.PHP 扩展名文件的HTML 中嵌入此代码,可以得出真实IP地址。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7434552.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存