不确定为什么在按钮的onclick事件中没有调用open函数。 任何帮助都非常有用
<html>
<head>
</head>
<body>
<script>
function open(){
alert('gsfhdgf');
document.getElementById("overlay").style.display="block";
document.getElementById("fade").style.display="block";
}
</script>
<div id="fade" style="display:none">
<div id="overlay" style="display:none">
this is my content
</div>
</div>
<button onclick="open()">Click Me!</button>
</body>
</html>
答案 0 :(得分:11)
open
已用作函数名称(window.open
,document.open
...)
将您的函数命名为其他内容(最好是有意义的)并且它将起作用。