我希望在单击 onclick 功能时显示其他对象。当我单击该按钮时,它将隐藏一个对象并显示另外两个对象。我已经将 style.visibility 设置为可见。但是显示两个对象不起作用。
更新示例:
<input type="submit" id="show" name="show" value="show" onclick="RemoveDoc(); document.getElementById('docname').style.visibility='hidden'; document.getElementById('browse').style.visibility='visible'; return false;" />
//browse input
<input type ="file" name="browse" id="browse">
方法二:
//Using my RemoveDoc() function, I want the button of browse being show out.
function RemoveDoc(Doc)
{
xmlhttp1=new XMLHttpRequest();
xmlhttp1.open("GET","functions/remove.php?Doc="+Doc,true);
xmlhttp1.onreadystatechange=function()
{
if (xmlhttp1.readyState==4 && xmlhttp1.status==200)
{
//when i run debugging, it says that the style of null..
document.getElementById("browse").style.visibility='visible';
}
}
xmlhttp1.send();
return false;
}
</script>
我尝试了两种方法都无法显示浏览按钮。它应该在浏览对象上显示我的可见性,因为它是可见的......请建议。