js中为什么有的事件得不到处理?
function changecolor()
{
var swipe=document.getElementById("txt");
swipe.style.color="red";
swipe.style.backgroundColor="gray";
}
function hidden()
{
var swipe=document.getElementById("txt");
swipe.style.display="none";
}
为什么下面隐藏函数得不到事件的响应呢?