我正在用html编写此代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script language="javascript" type="text/javascript">
function setVisibility(id, visibility) {
document.getElementById(id).style.display = visibility;
}
</script>
<title>Welcome to the memory game</title>
</head>
<body>
<h1>Welcome to the memory game!</h1>
<input type="button" name="type" value='Show Layer' onclick="setVisibility('sub3', 'inline');"/>
<input type="button" name="type" value='Hide Layer' onclick="setVisibility('sub3', 'none');"/>
<div id="sub3">Message Box</div>
</body> </html>
它假定使“ div”消失并重新包装,但它在chrome中而不在资源管理器中起作用。
任何人都知道如何使它在资源管理器中工作(当有关ActiveX的消息出现在资源管理器中时,我试图允许被阻止的内容)?
谢谢,
格雷格
最佳答案
我可以建议您尝试使用jQuery吗?它非常适合跨浏览器使用,并且具有.toggle()函数来显示/隐藏DOM对象。
您在jQuery中的函数看起来像
function setVisibility(id) {
$('#' + id).toggle();
}
关于javascript - Javascript可在Chrome中使用,但不能在资源管理器中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2523526/