firebug调试小tips:cd

firebug是个好东西,下面选些技巧来讲解下,比如一个页面中有iframe,
如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Console Test Page</title>
</head>
<body>
    <iframe id="frameID" name="frameName" src="iframe.html" />
</body>
</html>
则在firebug的命令行下,可以这样进入各层的frame
cd(document.getElementById("frameID").contentWindow);
cd(window.frames[0]);
cd(window.frames["frameName"]);
cd(window.top);

你可能感兴趣的:(Firebug)