请大神解释下
<input type="button" value="改变颜色" onclick="aa()"/>
</form>
<script type="text/javascript">
//定义"改变颜色"的函数
function aa(){
var 11= document.getElementById("txt");
11.style.color = "red";
txt.style.backgroundColor = "blue";
}
这里我用变量11的话就没有反应,换成txt就可以,为什么啊?