风故故,也依依

Stand still in the wind.

导航

JavaScript基础之self使用

Use self to reference the current document

代码如下:

<html>
<head>
<script language="JavaScript" type = "text/javascript">
<!--
if (top==self)
{
     var main_frame = "http://hao123.com";
     var cur_url = self.location.href;
     var setframes = main_frame + "?" + cur_url;
     location.href = setframes;
}
//-->
</script>
</head>
<body>

</body>
</html>

posted on 2007-09-25 11:22  jadmin  阅读(180)  评论(0编辑  收藏  举报