TaoistWar 发表于 2013-2-7 19:32:24

self是什么?

<html><head><title>页面自动最大化</title><link href="" type="text/css" rel="stylesheet"/><script type="text/javascript" src=""> </script><script type="text/javascript" src=""> </script><script type="text/javascript">self.moveTo(0, 0);self.resizeTo(screen.availWidth, screen.availHeight);</script></head><body></body></html> 上面的self就代指window,和以下代码的作用相同:
<html><head><title>页面自动最大化</title><link href="" type="text/css" rel="stylesheet"/><script type="text/javascript" src=""> </script><script type="text/javascript" src=""> </script><script type="text/javascript">window.moveTo(0, 0);window.resizeTo(screen.availWidth, screen.availHeight);</script></head><body></body></html> 兼容FF, IE
页: [1]
查看完整版本: self是什么?