Skip to content

Instantly share code, notes, and snippets.

@binnng
Created April 25, 2013 10:05
Show Gist options
  • Select an option

  • Save binnng/5458764 to your computer and use it in GitHub Desktop.

Select an option

Save binnng/5458764 to your computer and use it in GitHub Desktop.
firefox 18.0.1 不支持window.id方式获取dom元素
<!doctype html>
<html>
<body>
<div id="nav"></div>
</body>
<script type="text/javascript">
alert(window.nav);
/**
* 经测试
* firefox 18.0.1 不支持以上方式访问id元素
*/
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment