本帖最后由 fnz1988 于 2014-1-15 23:35 编辑
最近需要自动登陆的网站貌似升级了,httphelper不能直接拿到跳转地址,原来是获得html代码然后获取frame地址然后再做跳转,现在httphelper拿不到frame部分了,不知道为什么这是地址 http://hh2.45aq-1ac.5948dtqs.com:6688
这里是现在拿到的代码
[HTML] 纯文本查看 复制代码
<script type="text/javascript">
if ( top.location != self.location ) top.location=self.location;
</script>
<html>
<head>
<title>Welcome!!</title>
</head>
<body>
<div style="display: none;"><script type="text/javascript" src="http://s137.cnzz.com/stat.php?id=1000188199&web_id=1000188199"></script></div>
</body>
</html>
这个是IE看到的代码,也是原来httphelper应该获到的
[HTML] 纯文本查看 复制代码
<script type="text/javascript">
if ( top.location != self.location ) top.location=self.location;
</script>
<html>
<head>
<title>Welcome!!</title>
</head>
<frameset rows="*,0" frameborder="0" border="0">
<frame name="topFrame" src="http://hh2.45aq-1ac.5948dtqs.com:12241/user">
<frame name="belowFrame" src="index.htm">
</frameset>
<body>
<noframes>
Browser Not support frames
</noframes>
</body>
</html>
|