页面没有用<div>,可还是显示有
<div id="_firebugConsole" style="display: none;" FirebugVersion="1.4.5"/>
怎么能把他弄掉....
这是页面源码:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
</head>
<body>
请输入验证码:<input type=text name=codeTxt size=4><script>
var num=Math.floor(Math.random()*8999)+1000     //取4位随机数
function txtTest()
{
if(document.all.codeTxt.value!=num)             //如果用户输入的不正确
    alert("验证码错误!");
else
    alert("验证通过!");
return;
}
document.write(num)                             //显示随机验证码
</script>
<input type=button value="确认" onclick="txtTest()"></body>
</html>这是:firebug里,html标签内显示的代码:
html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>标题页</title>
</head>
<body>
请输入验证码:
<input type="text" size="4" name="codeTxt"/>
<script>
1
2var num=Math.floor(Math.random()*8999)+1000 //取4位随机数
3function txtTest()
4{
5if(document.all.codeTxt.value!=num) //如果用户输入的不正确
6 alert("验证码错误!");
7else
8 alert("验证通过!");
9return;
10}
11document.write(num) //显示随机验证码
</script>
8739
<input type="button" onclick="txtTest()" value="确认"/>
<div id="livemargins_control" style="position: absolute; display: none; z-index: 9999;">
<img height="5" width="77" style="position: absolute; left: -77px; top: -5px;" src="chrome://livemargins/skin/monitor-background-horizontal.png"/>
<img style="position: absolute; left: 0pt; top: -5px;" src="chrome://livemargins/skin/monitor-background-vertical.png"/>
<img id="monitor-play-button" style="position: absolute; left: 1px; top: 0pt; opacity: 0.5; cursor: pointer;" onmouseout="this.style.opacity=0.5" onmouseover="this.style.opacity=1" src="chrome://livemargins/skin/monitor-play-button.png"/>
</div>
</body>
<div id="_firebugConsole" style="display: none;" FirebugVersion="1.4.5"/>
</html>
平白无故firebug里多了一段<div>...
求教...........怎么样把firebug弄正常...